diff options
Diffstat (limited to 'clang-tools-extra/clang-tidy/utils/DeclRefExprUtils.cpp')
-rw-r--r-- | clang-tools-extra/clang-tidy/utils/DeclRefExprUtils.cpp | 2 |
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 628b8506811..53f9336b6fc 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; |