Commit f919a052 authored by Misha Shneerson's avatar Misha Shneerson Committed by Jordan DeLong

[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
parent 5196d1e2
...@@ -42,8 +42,6 @@ static_assert(sizeof(unsigned long) >= 4, ...@@ -42,8 +42,6 @@ static_assert(sizeof(unsigned long) >= 4,
" please update."); " please update.");
template <> const char *const MaxString<unsigned long long>::value = template <> const char *const MaxString<unsigned long long>::value =
"18446744073709551615"; "18446744073709551615";
template <> const char *const MaxString<unsigned __int128>::value =
"340282366920938463463374607431768211455";
static_assert(sizeof(unsigned long long) >= 8, static_assert(sizeof(unsigned long long) >= 8,
"Wrong value for MaxString<unsigned long long>::value" "Wrong value for MaxString<unsigned long long>::value"
", please update."); ", please update.");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment