diff options
Diffstat (limited to 'src/support/bits.cpp')
-rw-r--r-- | src/support/bits.cpp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/support/bits.cpp b/src/support/bits.cpp index 749e6fb54..aa24edadb 100644 --- a/src/support/bits.cpp +++ b/src/support/bits.cpp @@ -22,9 +22,7 @@ #include <intrin.h> #endif -namespace wasm { - -namespace Bits { +namespace wasm::Bits { int popCount(uint8_t v) { // Small table lookup. @@ -198,6 +196,4 @@ uint32_t log2(uint32_t v) { uint32_t pow2(uint32_t v) { return v < 32 ? 1 << v : 0; } -} // namespace Bits - -} // namespace wasm +} // namespace wasm::Bits |