aboutsummaryrefslogtreecommitdiff
path: root/internal/allocator.h
diff options
context:
space:
mode:
Diffstat (limited to 'internal/allocator.h')
-rw-r--r--internal/allocator.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/allocator.h b/internal/allocator.h
index 3a6f077..e71df15 100644
--- a/internal/allocator.h
+++ b/internal/allocator.h
@@ -86,11 +86,11 @@ class Allocator {
}
// Alignment of allocated blocks.
- static const std::size_t kAlignment = kDefaultCacheLineSize;
+ static constexpr std::size_t kAlignment = kDefaultCacheLineSize;
// This is all we need so far, and since the usage pattern is fixed,
// there is no point in allowing more until we need to.
- static const std::size_t kMaxBlocks = 5;
+ static constexpr std::size_t kMaxBlocks = 5;
void Commit() {
assert(!committed_);