This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from b51cd02 [Lit Test] Make tests C++11 compatible - Microsoft diagnostics new b95354d P0091R3: Implement basic parsing support for C++17 deduction-guides.
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/Decl.h | 6 ++ include/clang/AST/DeclarationName.h | 43 +++++++------ include/clang/AST/RecursiveASTVisitor.h | 5 ++ include/clang/Basic/DiagnosticSemaKinds.td | 14 ++++- include/clang/Basic/IdentifierTable.h | 1 + include/clang/Parse/Parser.h | 3 +- include/clang/Sema/DeclSpec.h | 33 +++++++++- include/clang/Sema/Ownership.h | 1 + include/clang/Sema/Sema.h | 18 ++++++ include/clang/Serialization/ASTBitCodes.h | 3 +- lib/AST/ASTImporter.cpp | 9 +++ lib/AST/DeclarationName.cpp | 98 +++++++++++++++++++++++++++--- lib/AST/ItaniumMangle.cpp | 6 ++ lib/AST/MicrosoftMangle.cpp | 3 + lib/Parse/ParseDecl.cpp | 35 +++++++++-- lib/Parse/ParseDeclCXX.cpp | 5 +- lib/Parse/ParseExpr.cpp | 1 + lib/Parse/ParseExprCXX.cpp | 11 ++++ lib/Parse/ParseOpenMP.cpp | 7 ++- lib/Parse/ParseStmtAsm.cpp | 1 + lib/Parse/Parser.cpp | 6 +- lib/Sema/SemaCodeComplete.cpp | 1 + lib/Sema/SemaDecl.cpp | 39 +++++++++++- lib/Sema/SemaDeclCXX.cpp | 15 +++++ lib/Sema/SemaTemplateVariadic.cpp | 1 + lib/Sema/SemaType.cpp | 47 ++++++++------ lib/Sema/TreeTransform.h | 13 ++++ lib/Serialization/ASTReader.cpp | 16 +++-- lib/Serialization/ASTWriter.cpp | 7 +++ test/CXX/temp/temp.deduct.guide/p1.cpp | 73 ++++++++++++++++++++++ test/CXX/temp/temp.deduct.guide/p2.cpp | 14 +++++ test/CXX/temp/temp.deduct.guide/p3.cpp | 74 ++++++++++++++++++++++ tools/libclang/CIndex.cpp | 3 +- 33 files changed, 540 insertions(+), 72 deletions(-) create mode 100644 test/CXX/temp/temp.deduct.guide/p1.cpp create mode 100644 test/CXX/temp/temp.deduct.guide/p2.cpp create mode 100644 test/CXX/temp/temp.deduct.guide/p3.cpp