Use unsigned long long instead of uin64_t for OS where that matters.

llvm-svn: 165147
This commit is contained in:
Nick Kledzik 2012-10-03 19:27:25 +00:00
parent 7505079a1f
commit 85a62b1a1d
1 changed files with 1 additions and 1 deletions

View File

@ -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);