commit d187bfd035b3543b2df9734c481cfde3d4f00c4e parent fb6951cd695677f7cb4e2440b487bf975fa430e5 Author: [email protected] <[email protected]> Date: Tue, 26 Jul 2016 20:17:34 +0300 bitness_const for const char* Diffstat:
M | include/kfr/base/types.hpp | | | 11 | +++++++++++ |
1 file changed, 11 insertions(+), 0 deletions(-)
diff --git a/include/kfr/base/types.hpp b/include/kfr/base/types.hpp @@ -653,6 +653,17 @@ constexpr inline const T& bitness_const(const T& x32, const T& x64) #endif } +constexpr inline const char* bitness_const(const char* x32, const char* x64) +{ +#ifdef KFR_ARCH_X64 + (void)x32; + return x64; +#else + (void)x64; + return x32; +#endif +} + constexpr size_t native_cache_alignment = 64; constexpr size_t native_cache_alignment_mask = native_cache_alignment - 1; constexpr size_t maximum_vector_alignment = 32;