[Conv] Remove __int128 overload
authorMisha Shneerson <mshneer@fb.com>
Fri, 2 Nov 2012 00:58:27 +0000 (17:58 -0700)
committerJordan DeLong <jdelong@fb.com>
Sun, 16 Dec 2012 22:42:40 +0000 (14:42 -0800)
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

folly/Conv.cpp

index 27067fcc501f0f5f88a6fece9111581746959602..c65ba04a42a57d2e5b08e9df41497d0a354a5ffa 100644 (file)
@@ -42,8 +42,6 @@ static_assert(sizeof(unsigned long) >= 4,
               " please update.");
 template <> const char *const MaxString<unsigned long long>::value =
   "18446744073709551615";
-template <> const char *const MaxString<unsigned __int128>::value =
-  "340282366920938463463374607431768211455";
 static_assert(sizeof(unsigned long long) >= 8,
               "Wrong value for MaxString<unsigned long long>::value"
               ", please update.");