aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.clang-tidy1
-rw-r--r--include/chilbert/SmallBitVec.hpp2
2 files changed, 1 insertions, 2 deletions
diff --git a/.clang-tidy b/.clang-tidy
index 191e6cf..1164717 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -18,7 +18,6 @@ Checks: >
-google-runtime-references,
-llvmlibc-*,
-modernize-use-trailing-return-type,
- -readability-convert-member-functions-to-static,
-readability-identifier-length,
-readability-implicit-bool-conversion,
WarningsAsErrors: '*'
diff --git a/include/chilbert/SmallBitVec.hpp b/include/chilbert/SmallBitVec.hpp
index bd54855..37854d3 100644
--- a/include/chilbert/SmallBitVec.hpp
+++ b/include/chilbert/SmallBitVec.hpp
@@ -244,7 +244,7 @@ public:
const Rack* data() const { return &m_rack; }
/// Return the number of racks
- size_t num_racks() const { return 1; }
+ static constexpr size_t num_racks() { return 1U; }
template<class BitVec>
class iterator_base