maths: make is_pow2 constexpr
This commit is contained in:
parent
f6fa44f54f
commit
c04c56ed32
16
maths.cpp
16
maths.cpp
@ -24,22 +24,6 @@
|
||||
#include <type_traits>
|
||||
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
template <typename T>
|
||||
bool
|
||||
util::is_pow2 (T value)
|
||||
{
|
||||
typedef typename std::enable_if<std::is_integral<T>::value, bool>::type return_type;
|
||||
return (return_type)(value && !(value & (value - 1)));
|
||||
}
|
||||
|
||||
|
||||
template bool util::is_pow2 (uint8_t);
|
||||
template bool util::is_pow2 (uint16_t);
|
||||
template bool util::is_pow2 (uint32_t);
|
||||
template bool util::is_pow2 (uint64_t);
|
||||
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
template <typename T>
|
||||
T
|
||||
|
@ -67,8 +67,12 @@ namespace util {
|
||||
|
||||
//-------------------------------------------------------------------------
|
||||
template <typename T>
|
||||
bool
|
||||
is_pow2 (T value);
|
||||
constexpr
|
||||
std::enable_if_t<std::is_integral<T>::value, bool>
|
||||
is_pow2 [[gnu::const]] (T value)
|
||||
{
|
||||
return value && !(value & (value - 1));
|
||||
}
|
||||
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user