aboutsummaryrefslogtreecommitdiffstats
path: root/Hilbert/FixBitVec.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-08-05 12:13:17 +0200
committerDavid Robillard <d@drobilla.net>2018-08-07 20:01:21 +0200
commitc54f20a0cefcc24f32bf9a224bbbcfa9bb1cb3de (patch)
treed60990c0875afa5b01b70e33fc0b16199bba5220 /Hilbert/FixBitVec.hpp
parentfd21a495396990b1fca223ae5e883b138e9b969e (diff)
downloadchilbert-c54f20a0cefcc24f32bf9a224bbbcfa9bb1cb3de.tar.gz
chilbert-c54f20a0cefcc24f32bf9a224bbbcfa9bb1cb3de.tar.bz2
chilbert-c54f20a0cefcc24f32bf9a224bbbcfa9bb1cb3de.zip
Put everything inside namespace
Diffstat (limited to 'Hilbert/FixBitVec.hpp')
-rw-r--r--Hilbert/FixBitVec.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/Hilbert/FixBitVec.hpp b/Hilbert/FixBitVec.hpp
index 06c3523..24f932d 100644
--- a/Hilbert/FixBitVec.hpp
+++ b/Hilbert/FixBitVec.hpp
@@ -24,6 +24,8 @@
#include <inttypes.h>
#include <cassert>
+namespace Hilbert {
+
// This must be an unsigned integer that is either
// 32 or 64 bits. Otherwise, there are places in the
// code that simply will not work.
@@ -414,5 +416,6 @@ private:
FBV_UINT m_uiRack;
};
+} // namespace Hilbert
#endif