Commit 0c3a2f5d authored by Victor Zverovich's avatar Victor Zverovich

Fix warnings about constants being too large.

parent 7561ff27
......@@ -128,16 +128,16 @@ const uint64_t fmt::internal::POWERS_OF_10[] = {
10000000,
100000000,
1000000000,
10000000000,
100000000000,
1000000000000,
10000000000000,
100000000000000,
1000000000000000,
10000000000000000,
100000000000000000,
1000000000000000000,
10000000000000000000u
10000000000ull,
100000000000ull,
1000000000000ull,
10000000000000ull,
100000000000000ull,
1000000000000000ull,
10000000000000000ull,
100000000000000000ull,
1000000000000000000ull,
10000000000000000000ull
};
void fmt::internal::ReportUnknownType(char code, const char *type) {
......
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