Commit 6d5d48ac authored by Andrew Gallagher's avatar Andrew Gallagher Committed by Sara Golemon

folly/Conv.h: remove unused local typedef

Test Plan: compiled using gcc-4.8

Reviewed By: meyering@fb.com

FB internal diff: D923895
parent 7c94b139
......@@ -323,7 +323,6 @@ typename std::enable_if<
std::is_integral<Src>::value && std::is_signed<Src>::value &&
detail::IsSomeString<Tgt>::value && sizeof(Src) >= 4>::type
toAppend(Src value, Tgt * result) {
typedef typename std::make_unsigned<Src>::type Usrc;
char buffer[20];
if (value < 0) {
result->push_back('-');
......
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