Commit ecd2b80e authored by Victor Zverovich's avatar Victor Zverovich

Get rid of using declarations for header-only config

parent c95908bd
......@@ -42,8 +42,6 @@
# include <windows.h>
#endif
using fmt::LongLong;
using fmt::ULongLong;
using fmt::internal::Arg;
// Check if exceptions are disabled.
......@@ -418,10 +416,10 @@ template <typename T>
const uint64_t fmt::internal::BasicData<T>::POWERS_OF_10_64[] = {
0,
FMT_POWERS_OF_10(1),
FMT_POWERS_OF_10(ULongLong(1000000000)),
FMT_POWERS_OF_10(fmt::ULongLong(1000000000)),
// Multiply several constants instead of using a single long long constant
// to avoid warnings about C++98 not supporting long long.
ULongLong(1000000000) * ULongLong(1000000000) * 10
fmt::ULongLong(1000000000) * fmt::ULongLong(1000000000) * 10
};
FMT_FUNC void fmt::internal::report_unknown_type(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