diff --git a/deps/ox/src/ox/std/strongint.hpp b/deps/ox/src/ox/std/strongint.hpp index dd7bf76e..a624f7aa 100644 --- a/deps/ox/src/ox/std/strongint.hpp +++ b/deps/ox/src/ox/std/strongint.hpp @@ -120,8 +120,7 @@ constexpr Integer::Integer(const Integer &i) noexcept: Base(i) template constexpr Integer &Integer::operator=(Integer i) noexcept { // needed in case T has nodiscard - constexpr auto ignore = [](Base) {}; - ignore(Base::operator=(i)); + Base::operator=(i); m_i = i.m_i; return *this; }