commit | aec851ce9a39d5ed595dfd9ca9cd886574a67670 | [log] [tgz] |
---|---|---|
author | Zachary Turner <zturner@google.com> | Thu Sep 22 19:21:32 2016 +0000 |
committer | Zachary Turner <zturner@google.com> | Thu Sep 22 19:21:32 2016 +0000 |
tree | 75cedd0ef2ea17b3bfb96d6868c51d12b9c778c4 | |
parent | 8dacca943af8a53a23b1caf3142d10fb4a77b645 [diff] [blame] |
Fix build breakage due to typo in cast. llvm-svn: 282183
diff --git a/llvm/unittests/ADT/StringRefTest.cpp b/llvm/unittests/ADT/StringRefTest.cpp index 40ab4e0..39ed71b 100644 --- a/llvm/unittests/ADT/StringRefTest.cpp +++ b/llvm/unittests/ADT/StringRefTest.cpp
@@ -580,6 +580,8 @@ , "08" // illegal oct characters , "0o8" // illegal oct characters , "-123" // negative unsigned value + , "0x" + , "0b" };