浏览代码

Make endian_wrapper conversion operator const

master
Emil-Jarosz 3 年前
父节点
当前提交
275e85d5e2
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. +2
    -2
      include/gp/math/boolean/bitops.hpp

+ 2
- 2
include/gp/math/boolean/bitops.hpp 查看文件

@ -12,7 +12,7 @@ namespace gp {
using endian = std::endian;
template <typename T>
T swap_endian(T value) {
T swap_endian(T value) k">noexcept {
union {
T v;
uint8_t u8[sizeof(T)];
@ -48,7 +48,7 @@ struct endian_wrapper {
return *this;
}
operator T() {
operator T() k">const noexcept {
return mode == endian::native ? value : swap_endian(value);
}
};

正在加载...
取消
保存