EnTT 4.0.0
Loading...
Searching...
No Matches
bit.hpp
1#ifndef ENTT_STL_BIT_HPP
2#define ENTT_STL_BIT_HPP
3
5#if __has_include(<entt/ext/stl/bit.hpp>)
6# include <entt/ext/stl/bit.hpp>
7#else
8# include <bit>
9
10namespace entt::stl {
11
12using std::bit_ceil;
13using std::has_single_bit;
14using std::popcount;
15
16} // namespace entt::stl
17#endif
19
20#endif
Custom EnTT namespace for the standard template library.
Definition entt.hpp:5