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 {
|
struct float_spec_handler {
|
||||||
char type;
|
char type;
|
||||||
bool upper{false};
|
bool upper;
|
||||||
bool fixed{false};
|
bool fixed;
|
||||||
bool as_percentage{false};
|
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() {
|
void on_general() {
|
||||||
if (type == 'G') upper = true;
|
if (type == 'G') upper = true;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user