[all-commits] [llvm/llvm-project] ffa214: [Concepts] Constraint Enforcement & Diagnostics

Saar Raz via All-commits all-commits at lists.llvm.org
Thu Oct 24 14:33:40 PDT 2019


  Branch: refs/heads/master
  Home:   https://github.com/llvm/llvm-project
  Commit: ffa214ef22892d75340dc6720271863901dc2c90
      https://github.com/llvm/llvm-project/commit/ffa214ef22892d75340dc6720271863901dc2c90
  Author: Saar Raz <saar at raz.email>
  Date:   2019-10-25 (Fri, 25 Oct 2019)

  Changed paths:
    A clang/include/clang/AST/ASTConcept.h
    M clang/include/clang/AST/ExprCXX.h
    M clang/include/clang/Basic/DiagnosticSemaKinds.td
    M clang/include/clang/Sema/Sema.h
    M clang/include/clang/Sema/TemplateDeduction.h
    A clang/lib/AST/ASTConcept.cpp
    M clang/lib/AST/ASTContext.cpp
    M clang/lib/AST/CMakeLists.txt
    M clang/lib/AST/Decl.cpp
    M clang/lib/AST/ExprCXX.cpp
    M clang/lib/Sema/SemaConcept.cpp
    M clang/lib/Sema/SemaDeclCXX.cpp
    M clang/lib/Sema/SemaOverload.cpp
    M clang/lib/Sema/SemaTemplate.cpp
    M clang/lib/Sema/SemaTemplateDeduction.cpp
    M clang/lib/Sema/SemaTemplateInstantiate.cpp
    M clang/lib/Sema/SemaTemplateInstantiateDecl.cpp
    M clang/lib/Serialization/ASTReaderStmt.cpp
    M clang/lib/Serialization/ASTWriterStmt.cpp
    M clang/test/CXX/expr/expr.prim/expr.prim.id/p3.cpp
    A clang/test/CXX/temp/temp.constr/temp.constr.constr/function-templates.cpp
    A clang/test/CXX/temp/temp.constr/temp.constr.constr/non-function-templates.cpp
    A clang/test/CXX/temp/temp.constr/temp.constr.constr/partial-specializations.cpp

  Log Message:
  -----------
  [Concepts] Constraint Enforcement & Diagnostics

Part of the C++20 concepts implementation effort.
- Associated constraints (requires clauses, currently) are now enforced when instantiating/specializing templates and when considering partial specializations and function overloads.
- Elaborated diagnostics give helpful insight as to why the constraints were not satisfied.
Phabricator: D41569




More information about the All-commits mailing list