mirror of
https://github.com/zhenyan121/Cubed.git
synced 2026-08-08 17:57:02 +08:00
21 lines
331 B
C++
21 lines
331 B
C++
#ifndef ENTT_STL_BIT_HPP
|
|
#define ENTT_STL_BIT_HPP
|
|
|
|
/*! @cond ENTT_INTERNAL */
|
|
#if __has_include(<entt/ext/stl/bit.hpp>)
|
|
# include <entt/ext/stl/bit.hpp>
|
|
#else
|
|
# include <bit>
|
|
|
|
namespace entt::stl {
|
|
|
|
using std::bit_ceil;
|
|
using std::has_single_bit;
|
|
using std::popcount;
|
|
|
|
} // namespace entt::stl
|
|
#endif
|
|
/*! @endcond */
|
|
|
|
#endif
|