From fa747173d1b25fad0e840ae04a255676871aa44e Mon Sep 17 00:00:00 2001 From: Michael Marshall <43034299+mmphys@users.noreply.github.com> Date: Sun, 14 Jul 2019 11:08:00 +0100 Subject: [PATCH] Debugging references were to l-values, so added const to stop errors --- Hadrons/Modules/MContraction/Nucleon.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Hadrons/Modules/MContraction/Nucleon.hpp b/Hadrons/Modules/MContraction/Nucleon.hpp index 149d53a0..6c1633c7 100644 --- a/Hadrons/Modules/MContraction/Nucleon.hpp +++ b/Hadrons/Modules/MContraction/Nucleon.hpp @@ -158,12 +158,12 @@ void TNucleon::execute(void) // DEBUG Just defining a few types so I can see what these things are //auto Daa_debug1 = transposeSpin( q1 ); // Current compilation settings tell me that FImpl is WilsonImplR (see FermionOperatorImpl.h, line 163) - WilsonImplR::PropagatorField &Debug_q_1{ q1 }; + const WilsonImplR::PropagatorField &Debug_q_1{ q1 }; //DEBUG_SHOW_TYPE( q1 ); // The propagator field is an alias for - Lattice, Ns> >> &Debug_q_2{ q1 }; + const Lattice, Ns> >> &Debug_q_2{ q1 }; // So then Daa is one of these - Lattice, Ns> >> &Debug_Daa_1{ Daa }; + const Lattice, Ns> >> &Debug_Daa_1{ Daa }; // Which means I should be able to do this //Lattice, Ns> >> Debug_Daa_2 = transposeSpin(Daa); // END DEBUG