This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 70cd574857 When typo-correcting a function name, consider correcting to [...] new fb98e7c13d [c++20] Implement P0846R0: allow (ADL-only) calls to templat [...]
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/ASTContext.h | 1 + include/clang/AST/DeclarationName.h | 20 +++ include/clang/AST/TemplateName.h | 19 ++- include/clang/Basic/DiagnosticParseKinds.td | 3 +- include/clang/Basic/DiagnosticSemaKinds.td | 9 ++ include/clang/Basic/TemplateKinds.h | 9 +- include/clang/Parse/Parser.h | 8 +- include/clang/Sema/Sema.h | 53 ++++++-- lib/AST/ASTContext.cpp | 15 ++- lib/AST/ASTImporter.cpp | 8 ++ lib/AST/ASTStructuralEquivalence.cpp | 6 + lib/AST/ItaniumMangle.cpp | 2 + lib/AST/ODRHash.cpp | 1 + lib/AST/TemplateName.cpp | 16 ++- lib/Parse/ParseDecl.cpp | 4 +- lib/Parse/ParseDeclCXX.cpp | 97 +++++++++------ lib/Parse/ParseExprCXX.cpp | 26 ++-- lib/Parse/ParseTemplate.cpp | 42 ++----- lib/Parse/ParseTentative.cpp | 104 +++++++++++++--- lib/Parse/Parser.cpp | 51 ++++++-- lib/Sema/SemaCXXScopeSpec.cpp | 25 ++-- lib/Sema/SemaDecl.cpp | 88 ++++++++------ lib/Sema/SemaDeclCXX.cpp | 2 + lib/Sema/SemaExpr.cpp | 32 ++++- lib/Sema/SemaExprCXX.cpp | 6 +- lib/Sema/SemaOverload.cpp | 10 +- lib/Sema/SemaTemplate.cpp | 134 ++++++++++++++++++--- lib/Serialization/ASTReader.cpp | 5 + lib/Serialization/ASTWriter.cpp | 6 + .../basic/basic.lookup/basic.lookup.unqual/p3.cpp | 60 +++++++-- test/CXX/drs/dr2xx.cpp | 7 +- test/CXX/drs/dr6xx.cpp | 9 +- test/CXX/temp/temp.spec/temp.explicit/p5.cpp | 5 +- test/FixIt/typo-crash.cpp | 10 +- test/Misc/diag-template-diffing.cpp | 2 +- test/Modules/module-private.cpp | 4 +- test/Modules/submodules-merge-defs.cpp | 4 +- test/Parser/cxx-ambig-init-templ.cpp | 2 +- test/Parser/cxx-template-argument.cpp | 23 ++-- test/Parser/cxx-template-decl.cpp | 13 +- test/SemaCXX/alias-template.cpp | 7 +- test/SemaCXX/class.cpp | 2 +- test/SemaCXX/cxx2a-adl-only-template-id.cpp | 67 +++++++++++ test/SemaCXX/destructor.cpp | 5 +- test/SemaCXX/invalid-member-expr.cpp | 5 +- test/SemaCXX/typo-correction.cpp | 2 +- test/SemaTemplate/dependent-base-classes.cpp | 2 +- test/SemaTemplate/dependent-template-recover.cpp | 10 +- test/SemaTemplate/rdar9173693.cpp | 7 +- test/SemaTemplate/recovery-crash.cpp | 4 +- tools/libclang/CIndex.cpp | 4 + www/cxx_status.html | 2 +- 52 files changed, 791 insertions(+), 267 deletions(-) create mode 100644 test/SemaCXX/cxx2a-adl-only-template-id.cpp