Changes to fix CI as g++-4.4 BUILD was broken.
This commit is contained in:
parent
73f31a8bcc
commit
d6d33a99c6
@ -2815,11 +2815,11 @@ template <typename Range> class basic_writer {
|
||||
|
||||
struct float_spec_handler {
|
||||
char type;
|
||||
bool upper{false};
|
||||
bool fixed{false};
|
||||
bool as_percentage{false};
|
||||
bool upper;
|
||||
bool fixed;
|
||||
bool as_percentage;
|
||||
|
||||
explicit float_spec_handler(char t) : type(t) {}
|
||||
explicit float_spec_handler(char t) : type(t), upper(false), fixed(false), as_percentage(false) {}
|
||||
|
||||
void on_general() {
|
||||
if (type == 'G') upper = true;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user