Changes to fix CI as g++-4.4 BUILD was broken.

This commit is contained in:
gawain 2019-03-03 21:09:50 +01:00
parent 73f31a8bcc
commit d6d33a99c6

View File

@ -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;