Replace uint128_wrapper with uint128_fallback

This commit is contained in:
Victor Zverovich
2022-04-02 10:03:29 -07:00
parent b4dc7a1d34
commit 02eb215f2f
3 changed files with 50 additions and 52 deletions

View File

@@ -390,7 +390,7 @@ template <typename T> struct std_string_view {};
#elif defined(__SIZEOF_INT128__) && !FMT_NVCC && \
!(FMT_CLANG_VERSION && FMT_MSC_VER)
# define FMT_USE_INT128 1
using int128_opt = __int128_t; // An optional 128-bit integer.
using int128_opt = __int128_t; // An optional native 128-bit integer.
using uint128_opt = __uint128_t;
template <typename T> inline auto convert_for_visit(T value) -> T {
return value;