Commit 21a295c2 authored by Victor Zverovich's avatar Victor Zverovich

Undo comment change

parent 96c68afe
...@@ -1163,8 +1163,7 @@ int snprintf_float(T value, int precision, float_specs specs, ...@@ -1163,8 +1163,7 @@ int snprintf_float(T value, int precision, float_specs specs,
auto size = to_unsigned(result); auto size = to_unsigned(result);
// Size equal to capacity means that the last character was truncated. // Size equal to capacity means that the last character was truncated.
if (size >= capacity) { if (size >= capacity) {
// Add 1 for the terminating '\0'. buf.reserve(size + offset + 1); // Add 1 for the terminating '\0'.
buf.reserve(size + offset + 1);
continue; continue;
} }
auto is_digit = [](char c) { return c >= '0' && c <= '9'; }; auto is_digit = [](char c) { return c >= '0' && c <= '9'; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment