From f919a0523e7e8d9d9195837ea6fe813d6a4e2ed7 Mon Sep 17 00:00:00 2001 From: Misha Shneerson Date: Thu, 1 Nov 2012 17:58:27 -0700 Subject: [PATCH] [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 --- folly/Conv.cpp | 2 -- 1 file changed, 2 deletions(-) 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."); -- 2.34.1