Commit 900b4f9b authored by Brett Simmers's avatar Brett Simmers Committed by Jordan DeLong

Remove an unused variable in FormatValue<double>

Test Plan: Built a program that uses it

Reviewed By: tudorb@fb.com

FB internal diff: D753460
parent 8ca18b6e
...@@ -562,8 +562,6 @@ class FormatValue<double> { ...@@ -562,8 +562,6 @@ class FormatValue<double> {
arg.precision = 6; arg.precision = 6;
} }
bool done = false;
// 2+: for null terminator and optional sign shenanigans. // 2+: for null terminator and optional sign shenanigans.
char buf[2 + std::max({ char buf[2 + std::max({
(2 + DoubleToStringConverter::kMaxFixedDigitsBeforePoint + (2 + DoubleToStringConverter::kMaxFixedDigitsBeforePoint +
......
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