From 98a3b8cf6531220c5ecfe124ebfe7d29deb1251b Mon Sep 17 00:00:00 2001 From: leveldb Team Date: Fri, 17 Apr 2020 21:19:50 +0000 Subject: change const to constexpr PiperOrigin-RevId: 307113877 --- db/skiplist_test.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'db') diff --git a/db/skiplist_test.cc b/db/skiplist_test.cc index 7c5d09b..9c70c5b 100644 --- a/db/skiplist_test.cc +++ b/db/skiplist_test.cc @@ -151,7 +151,7 @@ TEST(SkipTest, InsertAndLookup) { // been concurrently added since the iterator started. class ConcurrentTest { private: - static const uint32_t K = 4; + static constexpr uint32_t K = 4; static uint64_t key(Key key) { return (key >> 40); } static uint64_t gen(Key key) { return (key >> 8) & 0xffffffffu; } @@ -280,7 +280,6 @@ class ConcurrentTest { } } }; -const uint32_t ConcurrentTest::K; // Simple test that does single-threaded testing of the ConcurrentTest // scaffolding. -- cgit v1.2.1