diff --git a/src/fptostring.cpp b/src/fptostring.cpp index 9176d73bd..18012bf07 100644 --- a/src/fptostring.cpp +++ b/src/fptostring.cpp @@ -131,7 +131,7 @@ std::string FpToString(T v, int precision = 0) { // Case 1 - scientific notation: max digits of size_t plus sign, a dot and 2 letters for 'e+' or 'e-' and 4 letters for the exponent // Case 2 - default notation: require up to precision number of digits and one for a potential sign - std::array output_buffer; + std::array output_buffer; auto output_ptr = &output_buffer[0]; // Helper variable that in Case 2 counts the overflowing number of zeros that do not fit into the buffer.