put Few in the global namespace...

This commit is contained in:
Dan Ibanez
2016-12-21 08:01:06 -07:00
parent 992becc75f
commit 01e3a31639

View File

@ -3,9 +3,6 @@
#include <Kokkos_Core.hpp>
namespace Kokkos {
namespace Experimental {
template <typename T, std::size_t n>
class Few {
alignas(T) char array_[n * sizeof(T)];
@ -65,7 +62,4 @@ class Few {
}
};
}
}
#endif