mirror of
https://github.com/fmtlib/fmt.git
synced 2025-04-03 16:20:22 +00:00
Get rid of using declarations for header-only config
This commit is contained in:
parent
c95908bd8c
commit
ecd2b80e8f
@ -42,8 +42,6 @@
|
|||||||
# include <windows.h>
|
# include <windows.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
using fmt::LongLong;
|
|
||||||
using fmt::ULongLong;
|
|
||||||
using fmt::internal::Arg;
|
using fmt::internal::Arg;
|
||||||
|
|
||||||
// Check if exceptions are disabled.
|
// Check if exceptions are disabled.
|
||||||
@ -418,10 +416,10 @@ template <typename T>
|
|||||||
const uint64_t fmt::internal::BasicData<T>::POWERS_OF_10_64[] = {
|
const uint64_t fmt::internal::BasicData<T>::POWERS_OF_10_64[] = {
|
||||||
0,
|
0,
|
||||||
FMT_POWERS_OF_10(1),
|
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
|
// Multiply several constants instead of using a single long long constant
|
||||||
// to avoid warnings about C++98 not supporting long long.
|
// 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) {
|
FMT_FUNC void fmt::internal::report_unknown_type(char code, const char *type) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user