1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-04-18 09:45:55 +01:00

Namespace

This commit is contained in:
paboyle 2018-01-14 22:14:58 +00:00
parent 81dcd0e6ea
commit 9f2f294a27

View File

@ -9,12 +9,10 @@
#include <tuple> #include <tuple>
#include <utility> #include <utility>
namespace Grid { NAMESPACE_BEGIN(Grid);
namespace QCD {
// Supported types // Supported types
// enum {Fundamental, Adjoint} repr_type; // enum {Fundamental, Adjoint} repr_type;
// Utility to add support to the HMC for representations other than the // Utility to add support to the HMC for representations other than the
// fundamental // fundamental
template <class... Reptypes> template <class... Reptypes>
@ -96,7 +94,7 @@ struct AccessTypes<A, TupleClass, 0, S...> {
<< "\n"; << "\n";
} }
}; };
}
} NAMESPACE_END(Grid);
#endif #endif