From: Marc Horowitz Date: Fri, 22 May 2015 17:51:28 +0000 (-0700) Subject: remove unused variable X-Git-Tag: v0.40.0~6 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=3be65bf058d8b774910133384e9e91e4bb5ba4d3;p=folly.git remove unused variable Test Plan: search, and fbmake Reviewed By: delyank@fb.com Subscribers: trunkagent, folly-diffs@, yfeldblum, chalfant FB internal diff: D2093523 Signature: t1:2093523:1432249208:84a27e2328636c2aafe43412f61a693b5645b895 --- diff --git a/folly/Format.cpp b/folly/Format.cpp index b09152da..25a436e5 100644 --- a/folly/Format.cpp +++ b/folly/Format.cpp @@ -287,7 +287,6 @@ void insertThousandsGroupingUnsafe(char* start_buffer, char** end_buffer) { uint32_t buffer_read_index = remaining_digits - 1; start_buffer[buffer_write_index + 1] = 0; - uint32_t count = 0; bool done = false; uint32_t next_group_size = 3;