This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from cebd04fa37 [c++20] Implement tweaked __VA_OPT__ rules from P1042R1: new 1522af0cc9 [c++20] Implement P0428R2 - Familiar template syntax for gen [...]
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/clang/AST/DeclCXX.h | 3 ++ include/clang/AST/DeclTemplate.h | 5 ++ include/clang/AST/ExprCXX.h | 4 ++ include/clang/AST/RecursiveASTVisitor.h | 4 ++ include/clang/Basic/DiagnosticParseKinds.td | 10 ++++ include/clang/Parse/Parser.h | 6 +++ include/clang/Sema/ScopeInfo.h | 28 +++++++---- include/clang/Sema/Sema.h | 6 +++ lib/AST/DeclCXX.cpp | 19 +++++++- lib/AST/DeclPrinter.cpp | 46 +++++++++++++---- lib/AST/ExprCXX.cpp | 4 ++ lib/AST/ItaniumMangle.cpp | 24 ++++++++- lib/AST/StmtPrinter.cpp | 11 +++-- lib/AST/TypePrinter.cpp | 14 +++++- lib/Parse/ParseExprCXX.cpp | 41 +++++++++++++++- lib/Sema/Sema.cpp | 2 +- lib/Sema/SemaLambda.cpp | 57 ++++++++++++++-------- lib/Sema/SemaType.cpp | 5 +- test/CXX/temp/temp.decls/temp.variadic/p4.cpp | 9 ++-- .../mangle-lambda-explicit-template-params.cpp | 34 +++++++++++++ test/Index/print-display-names.cpp | 2 +- test/PCH/cxx11-lambdas.mm | 2 +- test/PCH/cxx1y-lambdas.mm | 2 +- test/PCH/cxx2a-template-lambdas.cpp | 42 ++++++++++++++++ test/Parser/cxx2a-template-lambdas.cpp | 8 +++ test/SemaCXX/cxx2a-template-lambdas.cpp | 45 +++++++++++++++++ unittests/AST/StmtPrinterTest.cpp | 37 ++++++++++++++ .../LambdaTemplateParams.cpp | 53 ++++++++++++++++++++ www/cxx_status.html | 2 +- 29 files changed, 464 insertions(+), 61 deletions(-) create mode 100644 test/CodeGenCXX/mangle-lambda-explicit-template-params.cpp create mode 100644 test/PCH/cxx2a-template-lambdas.cpp create mode 100644 test/Parser/cxx2a-template-lambdas.cpp create mode 100644 test/SemaCXX/cxx2a-template-lambdas.cpp create mode 100644 unittests/Tooling/RecursiveASTVisitorTests/LambdaTemplateParams.cpp