From a7774e100f22be410a302e1bcf2de515a917f5fd Mon Sep 17 00:00:00 2001 From: Azusa Yamaguchi Date: Tue, 16 Jun 2015 14:06:31 +0100 Subject: [PATCH] Typo fix --- lib/lattice/Lattice_base.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/lattice/Lattice_base.h b/lib/lattice/Lattice_base.h index cd2fa855..0503732c 100644 --- a/lib/lattice/Lattice_base.h +++ b/lib/lattice/Lattice_base.h @@ -158,7 +158,7 @@ PARALLEL_FOR_LOOP vobj tmp = eval(ss,expr); vstream(_odata[ss] ,tmp); #else - _odata[ss]=_eval(ss,expr); + _odata[ss]=eval(ss,expr); #endif } }; @@ -196,7 +196,7 @@ PARALLEL_FOR_LOOP _odata.resize(_grid->oSites()); PARALLEL_FOR_LOOP for(int ss=0;ss<_grid->oSites();ss++){ - _odata[ss]=eval(ss,expr); + vstream(_odata[ss] ,eval(ss,expr)); } };