From: Misha Shneerson Date: Fri, 2 Nov 2012 00:58:27 +0000 (-0700) Subject: [Conv] Remove __int128 overload X-Git-Tag: v0.22.0~1159 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=f919a0523e7e8d9d9195837ea6fe813d6a4e2ed7;p=folly.git [Conv] Remove __int128 overload Summary: parseInt128 is only available for GCC 4.7 and above. Test Plan: . Reviewed By: igorzi@fb.com FB internal diff: D618456 Blame Revision: rFBCODEeaec97e2991f --- diff --git a/folly/Conv.cpp b/folly/Conv.cpp index 27067fcc..c65ba04a 100644 --- a/folly/Conv.cpp +++ b/folly/Conv.cpp @@ -42,8 +42,6 @@ static_assert(sizeof(unsigned long) >= 4, " please update."); template <> const char *const MaxString::value = "18446744073709551615"; -template <> const char *const MaxString::value = - "340282366920938463463374607431768211455"; static_assert(sizeof(unsigned long long) >= 8, "Wrong value for MaxString::value" ", please update.");