Wayverb
popcount.h
1 #pragma once
2 
3 namespace util {
4 
5 constexpr int popcount(size_t t) {
6  int ret = 0;
7  for (; t; t &= t - 1) {
8  ++ret;
9  }
10  return ret;
11 }
12 
13 } // namespace util
Definition: allocator.h:6