aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/Sema/SemaChecking.cpp
diff options
context:
space:
mode:
authorKazu Hirata <kazu@google.com>2025-04-19 10:37:25 -0700
committerGitHub <noreply@github.com>2025-04-19 10:37:25 -0700
commit0ed1c9862df408d3df171762bd8fa0dafbe1b7e2 (patch)
tree8ac1c49bc60f45eaaef722c8abc476ad51697c24 /clang/lib/Sema/SemaChecking.cpp
parentd46c7334e86040a71b4002786fe021ebf6946694 (diff)
downloadllvm-0ed1c9862df408d3df171762bd8fa0dafbe1b7e2.zip
llvm-0ed1c9862df408d3df171762bd8fa0dafbe1b7e2.tar.gz
llvm-0ed1c9862df408d3df171762bd8fa0dafbe1b7e2.tar.bz2
[clang] llvm::append_range (NFC) (#136440)
Diffstat (limited to 'clang/lib/Sema/SemaChecking.cpp')
-rw-r--r--clang/lib/Sema/SemaChecking.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaChecking.cpp b/clang/lib/Sema/SemaChecking.cpp
index 26c2dc6..c48e009 100644
--- a/clang/lib/Sema/SemaChecking.cpp
+++ b/clang/lib/Sema/SemaChecking.cpp
@@ -511,7 +511,7 @@ struct BuiltinDumpStructGenerator {
Args.reserve((TheCall->getNumArgs() - 2) + /*Format*/ 1 + Exprs.size());
Args.assign(TheCall->arg_begin() + 2, TheCall->arg_end());
Args.push_back(getStringLiteral(Format));
- Args.insert(Args.end(), Exprs.begin(), Exprs.end());
+ llvm::append_range(Args, Exprs);
// Register a note to explain why we're performing the call.
Sema::CodeSynthesisContext Ctx;