Skip to content

Commit eb191f1

Browse files
committed
Disable emulated128 path on device
1 parent 9f4faa3 commit eb191f1

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

include/boost/charconv/detail/from_chars_integer_impl.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -396,10 +396,12 @@ BOOST_CHARCONV_GCC5_CONSTEXPR from_chars_result from_chars128(const char* first,
396396
}
397397
#endif
398398

399+
#ifndef __NVCC__
399400
BOOST_CHARCONV_GCC5_CONSTEXPR from_chars_result from_chars128(const char* first, const char* last, uint128& value, int base = 10) noexcept
400401
{
401402
return from_chars_integer_impl<uint128, uint128>(first, last, value, base);
402403
}
404+
#endif
403405

404406
}}} // Namespaces
405407

0 commit comments

Comments
 (0)