From: Nick Kledzik Date: Wed, 3 Oct 2012 19:27:25 +0000 (+0000) Subject: Use unsigned long long instead of uin64_t for OS where that matters. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=436eaa88fda780e135405c9fc9dc9cac892eb9d8;p=oota-llvm.git Use unsigned long long instead of uin64_t for OS where that matters. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165147 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/unittests/ADT/StringRefTest.cpp b/unittests/ADT/StringRefTest.cpp index e9c017babfc..ead372f365d 100644 --- a/unittests/ADT/StringRefTest.cpp +++ b/unittests/ADT/StringRefTest.cpp @@ -470,7 +470,7 @@ static const char* BadStrings[] = { TEST(StringRefTest, getAsUnsignedIntegerBadStrings) { - uint64_t U64; + unsigned long long U64; for (size_t i = 0; i < array_lengthof(BadStrings); ++i) { bool IsBadNumber = StringRef(BadStrings[i]).getAsInteger(0, U64); ASSERT_TRUE(IsBadNumber);