aboutsummaryrefslogtreecommitdiff
path: root/clang-tidy/performance
diff options
context:
space:
mode:
authorHaojian Wu <hokein@google.com>2017-05-15 18:18:28 +0000
committerHaojian Wu <hokein@google.com>2017-05-15 18:18:28 +0000
commitef5be379a96744ad0da56b9f9b8cb1ad558ba54b (patch)
tree068657b9db7fc2995f670ddc06185f76e09e1aff /clang-tidy/performance
parenta196a6f1b9a5ea2a48ff7f20b86f467b07766bc3 (diff)
[clang-tidy] Fix a typo: dequeue => deque
git-svn-id: https://llvm.org/svn/llvm-project/clang-tools-extra/trunk@303095 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'clang-tidy/performance')
-rw-r--r--clang-tidy/performance/InefficientVectorOperationCheck.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tidy/performance/InefficientVectorOperationCheck.cpp b/clang-tidy/performance/InefficientVectorOperationCheck.cpp
index be0437a6..2f311da0 100644
--- a/clang-tidy/performance/InefficientVectorOperationCheck.cpp
+++ b/clang-tidy/performance/InefficientVectorOperationCheck.cpp
@@ -55,7 +55,7 @@ static const char RangeLoopName[] = "for_range_loop";
ast_matchers::internal::Matcher<Expr> supportedContainerTypesMatcher() {
return hasType(cxxRecordDecl(hasAnyName(
"::std::vector", "::std::set", "::std::unordered_set", "::std::map",
- "::std::unordered_map", "::std::array", "::std::dequeue")));
+ "::std::unordered_map", "::std::array", "::std::deque")));
}
} // namespace