aboutsummaryrefslogtreecommitdiff
path: root/clang-tools-extra/clang-tidy/utils/DeclRefExprUtils.cpp
diff options
context:
space:
mode:
authorMark de Wever <koraq@xs4all.nl>2020-01-01 17:23:21 +0100
committerMark de Wever <koraq@xs4all.nl>2020-01-01 20:01:37 +0100
commit8dc7b982b4556c243e0502e6e230bdd53ddd65ff (patch)
tree518a39bbece25299e56350272605c7a9bd8f60c6 /clang-tools-extra/clang-tidy/utils/DeclRefExprUtils.cpp
parent9b24dad6c06bba771b805ffd9bd047af25317e52 (diff)
downloadllvm-8dc7b982b4556c243e0502e6e230bdd53ddd65ff.zip
llvm-8dc7b982b4556c243e0502e6e230bdd53ddd65ff.tar.gz
llvm-8dc7b982b4556c243e0502e6e230bdd53ddd65ff.tar.bz2
[NFC] Fixes -Wrange-loop-analysis warnings
This avoids new warnings due to D68912 adds -Wrange-loop-analysis to -Wall. Differential Revision: https://reviews.llvm.org/D71857
Diffstat (limited to 'clang-tools-extra/clang-tidy/utils/DeclRefExprUtils.cpp')
-rw-r--r--clang-tools-extra/clang-tidy/utils/DeclRefExprUtils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tools-extra/clang-tidy/utils/DeclRefExprUtils.cpp b/clang-tools-extra/clang-tidy/utils/DeclRefExprUtils.cpp
index 628b850..53f9336 100644
--- a/clang-tools-extra/clang-tidy/utils/DeclRefExprUtils.cpp
+++ b/clang-tools-extra/clang-tidy/utils/DeclRefExprUtils.cpp
@@ -23,7 +23,7 @@ using llvm::SmallPtrSet;
namespace {
template <typename S> bool isSetDifferenceEmpty(const S &S1, const S &S2) {
- for (const auto &E : S1)
+ for (auto E : S1)
if (S2.count(E) == 0)
return false;
return true;