标签: c++ endianness constexpr c++14
随着对常量表达式的约束的放宽,C ++ 14中有一种方法可以在编译时获得系统字节序吗?
constexpr bool is_big_endian() { // Something here } constexpr bool is_little_endian() { // Something here }