This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 6cc60c9164 CWG issue 727: Fix numerous bugs in support for class-scope [...] new 6de0b449c0 [clang] adding explicit(bool) from c++2a
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 | 10 - include/clang/AST/DeclBase.h | 20 +- include/clang/AST/DeclCXX.h | 176 ++++-- include/clang/ASTMatchers/ASTMatchers.h | 3 + include/clang/Basic/DiagnosticCommonKinds.td | 2 + include/clang/Basic/DiagnosticParseKinds.td | 4 + include/clang/Basic/DiagnosticSemaKinds.td | 13 +- include/clang/Basic/Specifiers.h | 8 + include/clang/Sema/DeclSpec.h | 62 ++- include/clang/Sema/Overload.h | 5 + include/clang/Sema/Sema.h | 38 +- include/clang/Serialization/ASTBitCodes.h | 3 - include/clang/Serialization/ASTReader.h | 8 + lib/AST/ASTImporter.cpp | 28 +- lib/AST/ASTStructuralEquivalence.cpp | 6 +- lib/AST/Decl.cpp | 1 - lib/AST/DeclCXX.cpp | 109 ++-- lib/AST/DeclPrinter.cpp | 22 +- lib/Frontend/InitPreprocessor.cpp | 2 + lib/Parse/ParseDecl.cpp | 62 ++- lib/Sema/DeclSpec.cpp | 28 +- lib/Sema/SemaCodeComplete.cpp | 6 +- lib/Sema/SemaDecl.cpp | 18 +- lib/Sema/SemaDeclCXX.cpp | 59 +- lib/Sema/SemaInit.cpp | 88 +-- lib/Sema/SemaLambda.cpp | 4 +- lib/Sema/SemaLookup.cpp | 9 +- lib/Sema/SemaOverload.cpp | 173 +++--- lib/Sema/SemaTemplate.cpp | 16 +- lib/Sema/SemaTemplateInstantiateDecl.cpp | 53 +- lib/Serialization/ASTReaderDecl.cpp | 9 +- lib/Serialization/ASTWriter.cpp | 1 - lib/Serialization/ASTWriterDecl.cpp | 24 +- test/CXX/temp/temp.deduct.guide/p1.cpp | 2 +- test/CXX/temp/temp.deduct.guide/p3.cpp | 8 +- test/PCH/cxx-explicit-specifier.cpp | 124 +++++ test/SemaCXX/builtin-is-constant-evaluated.cpp | 2 +- test/SemaCXX/cxx2a-compat.cpp | 20 + test/SemaCXX/cxx2a-explicit-bool.cpp | 719 +++++++++++++++++++++++++ test/SemaCXX/explicit.cpp | 8 +- unittests/AST/Language.cpp | 3 + unittests/AST/Language.h | 1 + unittests/AST/MatchVerifier.h | 4 + unittests/AST/StructuralEquivalenceTest.cpp | 40 ++ www/cxx_status.html | 2 +- 45 files changed, 1643 insertions(+), 360 deletions(-) create mode 100644 test/PCH/cxx-explicit-specifier.cpp create mode 100644 test/SemaCXX/cxx2a-explicit-bool.cpp