From 2896b2cc5046b04877ffc3d51da584c11b09721d Mon Sep 17 00:00:00 2001 From: Henning Baldersheim Date: Wed, 5 Aug 2020 12:59:02 +0000 Subject: Turn off lint for test marco definitions we can actually use clang-tidy to cleanup our code. --- persistence/src/vespa/persistence/spi/bucket.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'persistence') diff --git a/persistence/src/vespa/persistence/spi/bucket.h b/persistence/src/vespa/persistence/spi/bucket.h index 874074d7e24..175aba376a9 100644 --- a/persistence/src/vespa/persistence/spi/bucket.h +++ b/persistence/src/vespa/persistence/spi/bucket.h @@ -24,8 +24,8 @@ class Bucket { PartitionId _partition; public: - Bucket() : _bucket(document::BucketSpace::invalid(), document::BucketId(0)), _partition(0) {} - Bucket(const document::Bucket& b, PartitionId p) + Bucket() noexcept : _bucket(document::BucketSpace::invalid(), document::BucketId(0)), _partition(0) {} + Bucket(const document::Bucket& b, PartitionId p) noexcept : _bucket(b), _partition(p) {} const document::Bucket &getBucket() const { return _bucket; } -- cgit v1.2.3