forked from OSchip/llvm-project
Use unsigned long long instead of uin64_t for OS where that matters.
llvm-svn: 165147
This commit is contained in:
parent
7505079a1f
commit
85a62b1a1d
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue