| 77 | struct FloatToStringBuffer |
| 78 | { |
| 79 | FloatToStringBuffer (FloatOrDouble value, int maxDecimalPlaces, bool omitPointIfPossible) |
| 80 | : stringEnd (writeAndGetEnd (storage, value, maxDecimalPlaces, omitPointIfPossible)) {} |
| 81 | |
| 82 | const char* begin() const { return storage; } |
| 83 | const char* end() const { return stringEnd; } |
nothing calls this directly
no outgoing calls
no test coverage detected