1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-04-10 14:10:46 +01:00

Namespace

This commit is contained in:
paboyle 2018-01-14 23:52:26 +00:00
parent 72ffa8a88e
commit 645ec8eba0

View File

@ -31,7 +31,7 @@ Author: paboyle <paboyle@ph.ed.ac.uk>
#ifndef GRID_LATTICE_UNARY_H
#define GRID_LATTICE_UNARY_H
namespace Grid {
NAMESPACE_BEGIN(Grid);
template<class obj> Lattice<obj> pow(const Lattice<obj> &rhs,RealD y){
Lattice<obj> ret(rhs._grid);
@ -71,14 +71,7 @@ namespace Grid {
}
return ret;
}
}
NAMESPACE_END(Grid);
#endif