summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Support/YAMLTraits.cpp
diff options
context:
space:
mode:
authorCraig Topper <craig.topper@gmail.com>2013-07-04 01:31:24 +0000
committerCraig Topper <craig.topper@gmail.com>2013-07-04 01:31:24 +0000
commitaf0dea13479bbd1eacfb1404ac09c729174c32fe (patch)
tree993847ade847808ef85e08533460c7b149dda80f /llvm/lib/Support/YAMLTraits.cpp
parenta24dc7fa8c82651be2d74a8f5e09d8fa06e4f3ca (diff)
downloadbcm5719-llvm-af0dea13479bbd1eacfb1404ac09c729174c32fe.tar.gz
bcm5719-llvm-af0dea13479bbd1eacfb1404ac09c729174c32fe.zip
Use SmallVectorImpl::iterator/const_iterator instead of SmallVector to avoid specifying the vector size.
llvm-svn: 185606
Diffstat (limited to 'llvm/lib/Support/YAMLTraits.cpp')
-rw-r--r--llvm/lib/Support/YAMLTraits.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/YAMLTraits.cpp b/llvm/lib/Support/YAMLTraits.cpp
index 9da2aa7c841..1e42b63e8d5 100644
--- a/llvm/lib/Support/YAMLTraits.cpp
+++ b/llvm/lib/Support/YAMLTraits.cpp
@@ -322,7 +322,7 @@ Input::HNode *Input::createHNodes(Node *N) {
}
bool Input::MapHNode::isValidKey(StringRef Key) {
- for (SmallVector<const char *, 6>::iterator i = ValidKeys.begin(),
+ for (SmallVectorImpl<const char *>::iterator i = ValidKeys.begin(),
End = ValidKeys.end(); i != End; ++i) {
if (Key.equals(*i))
return true;
OpenPOWER on IntegriCloud