diff --git a/lib/lattice/Lattice_where.h b/lib/lattice/Lattice_where.h index 84d7471c..c83d80c1 100644 --- a/lib/lattice/Lattice_where.h +++ b/lib/lattice/Lattice_where.h @@ -8,13 +8,14 @@ namespace Grid { // and blow away the tensor structures. // template -inline void where(Lattice &ret,const Lattice &predicate,Lattice &iftrue,Lattice &iffalse) +inline void whereWolf(Lattice &ret,const Lattice &predicate,Lattice &iftrue,Lattice &iffalse) { conformable(iftrue,iffalse); conformable(iftrue,predicate); conformable(iftrue,ret); GridBase *grid=iftrue._grid; + typedef typename vobj::scalar_object scalar_object; typedef typename vobj::scalar_type scalar_type; typedef typename vobj::vector_type vector_type; @@ -43,7 +44,7 @@ PARALLEL_FOR_LOOP } template -inline Lattice where(const Lattice &predicate,Lattice &iftrue,Lattice &iffalse) +inline Lattice whereWolf(const Lattice &predicate,Lattice &iftrue,Lattice &iffalse) { conformable(iftrue,iffalse); conformable(iftrue,predicate);