[clang] [clang][ASTImporter] set nonnull type for var specialized from lambda template (PR #105492)
via cfe-commits
cfe-commits at lists.llvm.org
Wed Aug 21 03:02:08 PDT 2024
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 08decd20a968ddec459376ef64a4987ef74e15dc 2ac3aa1b85d727fd15d49fa1649147f2229576cb --extensions cpp -- clang/lib/AST/ASTImporter.cpp clang/unittests/AST/ASTImporterTest.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/clang/lib/AST/ASTImporter.cpp b/clang/lib/AST/ASTImporter.cpp
index cc1bd01f15..ad7cd7eee2 100644
--- a/clang/lib/AST/ASTImporter.cpp
+++ b/clang/lib/AST/ASTImporter.cpp
@@ -6613,10 +6613,9 @@ ExpectedDecl ASTNodeImporter::VisitVarTemplateSpecializationDecl(
// to adopt template parameters.
// updateLookupTableForTemplateParameters(**ToTPListOrErr);
} else { // Full specialization
- if (GetImportedOrCreateDecl(D2, D, Importer.getToContext(), DC,
- *BeginLocOrErr, *IdLocOrErr, VarTemplate,
- ToTmpTy, nullptr, D->getStorageClass(),
- TemplateArgs))
+ if (GetImportedOrCreateDecl(
+ D2, D, Importer.getToContext(), DC, *BeginLocOrErr, *IdLocOrErr,
+ VarTemplate, ToTmpTy, nullptr, D->getStorageClass(), TemplateArgs))
return D2;
}
``````````
</details>
https://github.com/llvm/llvm-project/pull/105492
More information about the cfe-commits
mailing list