aboutsummaryrefslogtreecommitdiffstats
path: root/document
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2021-03-01 16:54:16 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2021-03-01 20:23:01 +0000
commit61cbfbe0dd4b35461c2662812588573e40e7a3cd (patch)
tree478f7d90e49f084649687cab6891d949ff0e73eb /document
parent2e743e722ba395dc22755ab22bf2ae2bac2d9522 (diff)
Postpone buckets for reconsideration until it is safe.
Diffstat (limited to 'document')
-rw-r--r--document/src/vespa/document/bucket/bucketid.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/document/src/vespa/document/bucket/bucketid.h b/document/src/vespa/document/bucket/bucketid.h
index 675a0d23ebd..1168e636a4a 100644
--- a/document/src/vespa/document/bucket/bucketid.h
+++ b/document/src/vespa/document/bucket/bucketid.h
@@ -49,7 +49,7 @@ public:
using Type = uint64_t;
using List = bucket::BucketIdList;
/** Create an initially unset bucket id. */
- BucketId() noexcept : _id(0) {}
+ constexpr BucketId() noexcept : _id(0) {}
/** Create a bucket id with the given raw unchecked content. */
explicit BucketId(Type id) noexcept : _id(id) {}
/** Create a bucket id using a set of bits from a raw unchecked value. */