From 6d5d48ac0610d5298ed21ab6882ac4dccb56d2b5 Mon Sep 17 00:00:00 2001 From: Andrew Gallagher Date: Mon, 12 Aug 2013 13:13:05 -0700 Subject: [PATCH] folly/Conv.h: remove unused local typedef Test Plan: compiled using gcc-4.8 Reviewed By: meyering@fb.com FB internal diff: D923895 --- folly/Conv.h | 1 - 1 file changed, 1 deletion(-) diff --git a/folly/Conv.h b/folly/Conv.h index 4d14a559..f5cc23c5 100644 --- a/folly/Conv.h +++ b/folly/Conv.h @@ -323,7 +323,6 @@ typename std::enable_if< std::is_integral::value && std::is_signed::value && detail::IsSomeString::value && sizeof(Src) >= 4>::type toAppend(Src value, Tgt * result) { - typedef typename std::make_unsigned::type Usrc; char buffer[20]; if (value < 0) { result->push_back('-'); -- 2.34.1