mirror of
https://github.com/fmtlib/fmt.git
synced 2024-12-25 15:21:54 +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
|
// Returns the argument with specified index or, if arg_index is equal
|
||||||
// to the maximum unsigned value, the next argument.
|
// to the maximum unsigned value, the next argument.
|
||||||
const Arg &get_arg(const Char *s,
|
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.
|
// Parses argument index, flags and width and returns the argument index.
|
||||||
unsigned parse_header(const Char *&s, FormatSpec &spec);
|
unsigned parse_header(const Char *&s, FormatSpec &spec);
|
||||||
|
Loading…
Reference in New Issue
Block a user