mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-04 17:26:42 +00:00
Workaround Windows crap.
This commit is contained in:
parent
225b757b50
commit
1e9ca17b9d
2
format.h
2
format.h
@ -867,7 +867,7 @@ class PrintfFormatter : private FormatterBase {
|
||||
// Returns the argument with specified index or, if arg_index is equal
|
||||
// to the maximum unsigned value, the next argument.
|
||||
const Arg &get_arg(const Char *s,
|
||||
unsigned arg_index = std::numeric_limits<unsigned>::max());
|
||||
unsigned arg_index = (std::numeric_limits<unsigned>::max)());
|
||||
|
||||
// Parses argument index, flags and width and returns the argument index.
|
||||
unsigned parse_header(const Char *&s, FormatSpec &spec);
|
||||
|
Loading…
Reference in New Issue
Block a user