projects
/
folly.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7c94b13
)
folly/Conv.h: remove unused local typedef
author
Andrew Gallagher
<agallagher@fb.com>
Mon, 12 Aug 2013 20:13:05 +0000
(13:13 -0700)
committer
Sara Golemon
<sgolemon@fb.com>
Wed, 28 Aug 2013 21:30:11 +0000
(14:30 -0700)
Test Plan: compiled using gcc-4.8
Reviewed By: meyering@fb.com
FB internal diff:
D923895
folly/Conv.h
patch
|
blob
|
history
diff --git
a/folly/Conv.h
b/folly/Conv.h
index 4d14a559ef92804ee626e4f71dfabefc27def8fb..f5cc23c5cce939f960de63c4dcce232214de9062 100644
(file)
--- a/
folly/Conv.h
+++ b/
folly/Conv.h
@@
-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('-');