Skip to content

Commit 9a6c912

Browse files
committed
Generalize sign() method
1 parent 87a3f45 commit 9a6c912

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

include/slimcpplib/long_int.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ constexpr void long_int_t<native_t, size>::swap(long_int_t& that) noexcept
197197
template<typename native_t, uint_t size>
198198
constexpr bool long_int_t<native_t, size>::sign() const noexcept
199199
{
200-
return std::make_signed_t<native_t>(digits[hi]) < 0;
200+
return make_signed_t<native_t>(digits[hi]) < 0;
201201
}
202202

203203

0 commit comments

Comments
 (0)