1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-08-02 20:57:06 +01:00

NAMESPACE and formatting

This commit is contained in:
paboyle
2018-01-12 18:11:04 +00:00
parent bbb657da5c
commit 6ab744c720

View File

@@ -50,8 +50,8 @@ for (unsigned int i = 0; i < w; i += inc)
for (unsigned int i = 0; i < w; i += inc) for (unsigned int i = 0; i < w; i += inc)
#endif #endif
namespace Grid { NAMESPACE_BEGIN(Grid);
namespace Optimization { NAMESPACE_BEGIN(Optimization);
// type traits giving the number of elements for each vector type // type traits giving the number of elements for each vector type
template <typename T> struct W; template <typename T> struct W;
@@ -82,4 +82,5 @@ namespace Optimization {
typedef vec<uint16_t> vech; // half precision comms typedef vec<uint16_t> vech; // half precision comms
typedef vec<Integer> veci; typedef vec<Integer> veci;
}} NAMESPACE_END(Optimization);
NAMESPACE_END(Grid);