This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 0f7a450afd My first test commit. new fa50bf0cf8 [Concepts] Concept definitions (D40381)
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/ASTNodeTraverser.h | 5 ++ include/clang/AST/DeclTemplate.h | 36 ++++++++ include/clang/AST/RecursiveASTVisitor.h | 5 ++ include/clang/AST/TextNodeDumper.h | 1 + include/clang/Basic/DeclNodes.td | 1 + include/clang/Basic/DiagnosticParseKinds.td | 10 ++- include/clang/Basic/DiagnosticSemaKinds.td | 55 +++++-------- include/clang/Basic/TemplateKinds.h | 4 +- include/clang/Parse/Parser.h | 4 + include/clang/Sema/Sema.h | 13 +++ include/clang/Serialization/ASTBitCodes.h | 5 +- lib/AST/ASTStructuralEquivalence.cpp | 20 +++++ lib/AST/DeclBase.cpp | 1 + lib/AST/DeclPrinter.cpp | 9 +- lib/AST/DeclTemplate.cpp | 20 +++++ lib/AST/TextNodeDumper.cpp | 4 + lib/CodeGen/CGDecl.cpp | 1 + lib/CodeGen/CodeGenModule.cpp | 1 + lib/Index/IndexDecl.cpp | 4 +- lib/Parse/ParseTemplate.cpp | 94 +++++++++++++++++++++ lib/Sema/SemaDecl.cpp | 2 + lib/Sema/SemaDeclCXX.cpp | 2 +- lib/Sema/SemaLookup.cpp | 3 +- lib/Sema/SemaTemplate.cpp | 96 +++++++++++++++++++++- lib/Sema/SemaTemplateInstantiateDecl.cpp | 4 + lib/Serialization/ASTCommon.cpp | 1 + lib/Serialization/ASTReaderDecl.cpp | 10 +++ lib/Serialization/ASTWriter.cpp | 1 + lib/Serialization/ASTWriterDecl.cpp | 7 ++ .../concepts-ts/expr/expr.prim/expr.prim.id/p3.cpp | 4 + test/Parser/cxx2a-concept-declaration.cpp | 73 ++++++++++++++++ tools/libclang/CIndex.cpp | 1 + 32 files changed, 450 insertions(+), 47 deletions(-) create mode 100644 test/CXX/concepts-ts/expr/expr.prim/expr.prim.id/p3.cpp create mode 100644 test/Parser/cxx2a-concept-declaration.cpp