Parcourir la source

Make endian_wrapper conversion operator const

master
Emil-Jarosz il y a 3 ans
Parent
révision
275e85d5e2
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. +2
    -2
      include/gp/math/boolean/bitops.hpp

+ 2
- 2
include/gp/math/boolean/bitops.hpp Voir le fichier

@ -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);
}
};

Chargement…
Annuler
Enregistrer