diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/binary-writer.cc | 2 | ||||
-rw-r--r-- | src/test-hexfloat.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/binary-writer.cc b/src/binary-writer.cc index 93db5b19..41b682a7 100644 --- a/src/binary-writer.cc +++ b/src/binary-writer.cc @@ -96,7 +96,7 @@ namespace { /* TODO(binji): better leb size guess. Some sections we know will only be 1 byte, but others we can be fairly certain will be larger. */ -static const size_t LEB_SECTION_SIZE_GUESS = 1; +constexpr size_t LEB_SECTION_SIZE_GUESS = 1; #define ALLOC_FAILURE \ fprintf(stderr, "%s:%d: allocation failed\n", __FILE__, __LINE__) diff --git a/src/test-hexfloat.cc b/src/test-hexfloat.cc index 6dba8c06..d732c992 100644 --- a/src/test-hexfloat.cc +++ b/src/test-hexfloat.cc @@ -67,7 +67,7 @@ static bool is_infinity_or_nan(uint64_t double_bits) { class ThreadedTest : public ::testing::Test { protected: - static const int kDefaultNumThreads = 2; + static constexpr int kDefaultNumThreads = 2; virtual void SetUp() { num_threads_ = std::thread::hardware_concurrency(); |