From c54f20a0cefcc24f32bf9a224bbbcfa9bb1cb3de Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 5 Aug 2018 12:13:17 +0200 Subject: Put everything inside namespace --- Hilbert/Operations.hpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Hilbert/Operations.hpp') diff --git a/Hilbert/Operations.hpp b/Hilbert/Operations.hpp index 9f9cd0b..1413518 100644 --- a/Hilbert/Operations.hpp +++ b/Hilbert/Operations.hpp @@ -24,6 +24,8 @@ #include #include +namespace Hilbert { + /// IntegralIndex only exists if T is integral template using IntegralIndex = std::enable_if_t::value, int>; @@ -85,4 +87,6 @@ ffs(const unsigned long long field) return __builtin_ffsll(field); } +} // namespace Hilbert + #endif -- cgit v1.2.1