Skip to content

Commit f6990b8

Browse files
committed
std:: should be stdr::
1 parent 2998f97 commit f6990b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/dragonbox/dragonbox.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -680,7 +680,7 @@ namespace jkj {
680680
auto const carry = _addcarry_u64(0, low_, n, &low_);
681681
_addcarry_u64(carry, high_, 0, &high_);
682682
#elif defined(__INTEL_COMPILER) && (defined(_M_X64) || defined(__x86_64))
683-
static_assert(std::is_same<unsigned __int64, std::uint_least64_t>::value, "");
683+
static_assert(stdr::is_same<unsigned __int64, stdr::uint_least64_t>::value, "");
684684
auto const carry = _addcarry_u64(0, low_, n, &low_);
685685
_addcarry_u64(carry, high_, 0, &high_);
686686
#else

0 commit comments

Comments
 (0)