Suppress a warning

This commit is contained in:
Victor Zverovich 2019-08-10 14:15:55 -07:00
parent e8219952c6
commit 1607a01870

View File

@ -147,7 +147,7 @@ template <> struct std::formatter<__int128_t> : std::formatter<long long> {
auto format(__int128_t n, format_context& ctx) {
// Format as a long long since we only want to check if it is possible to
// specialize formatter for __int128_t.
return formatter<long long>::format(n, ctx);
return formatter<long long>::format(static_cast<long long>(n), ctx);
}
};