mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-02 11:28:20 +00:00
Fix parsing of flags.
This commit is contained in:
parent
f16aff8033
commit
438eba1402
12
format.cc
12
format.cc
@ -657,6 +657,7 @@ void fmt::BasicWriter<Char>::PrintfParser::Format(
|
||||
switch (have_width) {
|
||||
case false:
|
||||
// TODO: parse optional flags
|
||||
for (bool stop = false; !stop;) {
|
||||
switch (*s) {
|
||||
case '-':
|
||||
++s;
|
||||
@ -664,11 +665,18 @@ void fmt::BasicWriter<Char>::PrintfParser::Format(
|
||||
break;
|
||||
case '+':
|
||||
// TODO
|
||||
++s;
|
||||
spec.flags_ |= SIGN_FLAG | PLUS_FLAG;
|
||||
break;
|
||||
case '0':
|
||||
spec.fill_ = '0';
|
||||
case ' ':
|
||||
case '#':
|
||||
++s;
|
||||
break;
|
||||
default:
|
||||
stop = true;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
@ -731,10 +739,6 @@ void fmt::BasicWriter<Char>::PrintfParser::Format(
|
||||
// Parse width and zero flag.
|
||||
if (*s < '0' || *s > '9')
|
||||
break;
|
||||
if (*s == '0')
|
||||
spec.fill_ = '0';
|
||||
// Zero may be parsed again as a part of the width, but it is simpler
|
||||
// and more efficient than checking if the next char is a digit.
|
||||
spec.width_ = internal::ParseNonnegativeInt(s, error);
|
||||
// Fall through.
|
||||
default:
|
||||
|
Loading…
Reference in New Issue
Block a user