diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2014-04-12 16:15:53 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2014-04-12 16:15:53 +0000 |
commit | 502b9e1d7f28e95b0970b11eead77f326870cf4e (patch) | |
tree | 151b72ce4267078166ae468c77bd7d71d7c434ed /llvm/unittests/ADT/StringRefTest.cpp | |
parent | 5c323b833bd7187eb80e3c0de1c76f6cb45b8ff0 (diff) | |
download | llvm-502b9e1d7f28e95b0970b11eead77f326870cf4e.zip llvm-502b9e1d7f28e95b0970b11eead77f326870cf4e.tar.gz llvm-502b9e1d7f28e95b0970b11eead77f326870cf4e.tar.bz2 |
Retire llvm::array_endof in favor of non-member std::end.
While there make array_lengthof constexpr if we have support for it.
llvm-svn: 206112
Diffstat (limited to 'llvm/unittests/ADT/StringRefTest.cpp')
-rw-r--r-- | llvm/unittests/ADT/StringRefTest.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/unittests/ADT/StringRefTest.cpp b/llvm/unittests/ADT/StringRefTest.cpp index c7fd9d0..d80179b 100644 --- a/llvm/unittests/ADT/StringRefTest.cpp +++ b/llvm/unittests/ADT/StringRefTest.cpp @@ -9,6 +9,7 @@ #include "llvm/ADT/StringRef.h" #include "llvm/ADT/Hashing.h" +#include "llvm/ADT/STLExtras.h" #include "llvm/ADT/SmallVector.h" #include "llvm/ADT/StringExtras.h" #include "llvm/Support/Allocator.h" |