This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 5420418 [windows] Fix test for cl driver. new 85d7bd3 [c++1z] P0091R3: Basic support for deducing class template ar [...]
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/ExprCXX.h | 3 +- include/clang/AST/Type.h | 5 +- include/clang/Basic/DiagnosticSemaKinds.td | 23 ++- include/clang/Sema/Initialization.h | 23 ++- include/clang/Sema/Sema.h | 10 +- lib/AST/ExprCXX.cpp | 10 +- lib/Sema/SemaCast.cpp | 3 +- lib/Sema/SemaDecl.cpp | 103 +++++----- lib/Sema/SemaDeclCXX.cpp | 2 +- lib/Sema/SemaExprCXX.cpp | 92 +++++---- lib/Sema/SemaInit.cpp | 220 ++++++++++++++++++++- lib/Sema/SemaTemplateDeduction.cpp | 87 ++++---- test/CXX/expr/expr.post/expr.type.conv/p1.cpp | 10 + .../over.match.class.deduct/p3.cpp | 43 ++++ test/CXX/temp/temp.deduct.guide/p2.cpp | 3 +- .../cxx1z-class-template-argument-deduction.cpp | 98 ++++----- .../cxx1z-class-template-argument-deduction.cpp | 84 ++++++++ 17 files changed, 630 insertions(+), 189 deletions(-) create mode 100644 test/CXX/expr/expr.post/expr.type.conv/p1.cpp create mode 100644 test/CXX/over/over.match/over.match.funcs/over.match.class.dedu [...] create mode 100644 test/SemaCXX/cxx1z-class-template-argument-deduction.cpp