| 23 | char specifier; // c, d, x, o, i, s, p... |
| 24 | |
| 25 | FormatSpecification() : |
| 26 | width(-1), |
| 27 | length(0), |
| 28 | specifier('\0') |
| 29 | { |
| 30 | } |
| 31 | |
| 32 | bool has_width() const { return width != -1; } |
| 33 | bool has_length() const { return length != 0; } |
nothing calls this directly
no outgoing calls
no test coverage detected