diff options
| author | Nick Kledzik <kledzik@apple.com> | 2012-10-03 19:27:25 +0000 |
|---|---|---|
| committer | Nick Kledzik <kledzik@apple.com> | 2012-10-03 19:27:25 +0000 |
| commit | 85a62b1a1d5c73946455051e075b00486f402a20 (patch) | |
| tree | da47b2f6c5733ab133ce9bdd51251256b143be06 | |
| parent | 7505079a1ff40017d7e42c9786e6e69558340c5d (diff) | |
| download | bcm5719-llvm-85a62b1a1d5c73946455051e075b00486f402a20.tar.gz bcm5719-llvm-85a62b1a1d5c73946455051e075b00486f402a20.zip | |
Use unsigned long long instead of uin64_t for OS where that matters.
llvm-svn: 165147
| -rw-r--r-- | llvm/unittests/ADT/StringRefTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/ADT/StringRefTest.cpp b/llvm/unittests/ADT/StringRefTest.cpp index e9c017babfc..ead372f365d 100644 --- a/llvm/unittests/ADT/StringRefTest.cpp +++ b/llvm/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); |

