[clang] [clang-tools-extra] [clang] don't create type source info for vardecl created for structured bindings (PR #153923)
via cfe-commits
cfe-commits at lists.llvm.org
Fri Aug 15 21:18:21 PDT 2025
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {clang-format}-->
:warning: C/C++ code formatter, clang-format found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
git-clang-format --diff HEAD~1 HEAD --extensions cpp -- clang-tools-extra/test/clang-tidy/checkers/modernize/type-traits-GH153649.cpp clang/lib/Sema/SemaDeclCXX.cpp clang/test/Analysis/anonymous-decls.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/clang/lib/Sema/SemaDeclCXX.cpp b/clang/lib/Sema/SemaDeclCXX.cpp
index 2ba4f062b..30930d9cf 100644
--- a/clang/lib/Sema/SemaDeclCXX.cpp
+++ b/clang/lib/Sema/SemaDeclCXX.cpp
@@ -1376,10 +1376,10 @@ static bool checkTupleLikeDecomposition(Sema &S,
// Don't give this VarDecl a TypeSourceInfo, since this is a synthesized
// entity and this type was never written in source code.
- auto *RefVD = VarDecl::Create(
- S.Context, Src->getDeclContext(), Loc, Loc,
- B->getDeclName().getAsIdentifierInfo(), RefType,
- /*TInfo=*/nullptr, Src->getStorageClass());
+ auto *RefVD =
+ VarDecl::Create(S.Context, Src->getDeclContext(), Loc, Loc,
+ B->getDeclName().getAsIdentifierInfo(), RefType,
+ /*TInfo=*/nullptr, Src->getStorageClass());
RefVD->setLexicalDeclContext(Src->getLexicalDeclContext());
RefVD->setTSCSpec(Src->getTSCSpec());
RefVD->setImplicit();
``````````
</details>
https://github.com/llvm/llvm-project/pull/153923
More information about the cfe-commits
mailing list