Commit 1607a018 authored by Victor Zverovich's avatar Victor Zverovich

Suppress a warning

parent e8219952
......@@ -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);
}
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment