summaryrefslogtreecommitdiffstats
path: root/src/common/common_sizes.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/common/common_sizes.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/common/common_sizes.h b/src/common/common_sizes.h
index 5dc039c94..7e9fd968b 100644
--- a/src/common/common_sizes.h
+++ b/src/common/common_sizes.h
@@ -8,6 +8,8 @@
#include "common/common_types.h"
+namespace Common {
+
enum : u64 {
Size_1_KB = 0x400ULL,
Size_64_KB = 64ULL * Size_1_KB,
@@ -37,3 +39,5 @@ enum : u64 {
Size_512_GB = 512ULL * Size_1_GB,
Size_Invalid = std::numeric_limits<u64>::max(),
};
+
+} // namespace Common