aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/Frontend/CompilerInvocation.cpp
diff options
context:
space:
mode:
authorDmitri Gribenko <gribozavr@gmail.com>2020-09-12 01:07:54 +0200
committerDmitri Gribenko <gribozavr@gmail.com>2020-09-12 01:07:54 +0200
commite10df779f097e3a1fb02d901117ce71a5dd9dda2 (patch)
treefcdba3375676cd976ced1c05f6ebe0fa635e8488 /clang/lib/Frontend/CompilerInvocation.cpp
parent658475897b14781070549f72483fd283e3fe50aa (diff)
downloadllvm-e10df779f097e3a1fb02d901117ce71a5dd9dda2.zip
llvm-e10df779f097e3a1fb02d901117ce71a5dd9dda2.tar.gz
llvm-e10df779f097e3a1fb02d901117ce71a5dd9dda2.tar.bz2
Fix clang Wrange-loop-analysis in BuildTree.cpp
Building on Mac OS with clang 12: ``` jhemphill@jhemphill-mbp build % clang --version Apple clang version 12.0.0 (clang-1200.0.26.2) Target: x86_64-apple-darwin19.6.0 Thread model: posix InstalledDir: /Library/Developer/CommandLineTools/usr/bin ``` yields one warning: ``` /Users/jhemphill/oss/llvm-project/clang/lib/Tooling/Syntax/BuildTree.cpp:1126:22: warning: loop variable 'Arg' is always a copy because the range of type 'llvm::iterator_range<clang::Stmt::CastIterator<clang::Expr, clang::Expr *, clang::Stmt *> >' does not return a reference [-Wrange-loop-analysis] for (const auto &Arg : Args) { ^ /Users/jhemphill/oss/llvm-project/clang/lib/Tooling/Syntax/BuildTree.cpp:1126:10: note: use non-reference type 'clang::Expr *' for (const auto &Arg : Args) { ``` It appears that `Arg` is an `Expr*`, passed by value rather than by const reference. Reviewed By: eduucaldas, gribozavr2 Differential Revision: https://reviews.llvm.org/D87482
Diffstat (limited to 'clang/lib/Frontend/CompilerInvocation.cpp')
0 files changed, 0 insertions, 0 deletions