//===------ SemaDeclCXX.cpp - Semantic Analysis for C++ Declarations ------===////// The LLVM Compiler Infrastructure//// This file is distributed under the University of Illinois Open Source// License. See LICENSE.TXT for details.////===----------------------------------------------------------------------===////// This file implements semantic analysis for C++ declarations.////===----------------------------------------------------------------------===//#include"Sema.h"#include"SemaInherit.h"#include"clang/AST/ASTConsumer.h"#include"clang/AST/ASTContext.h"#include"clang/AST/TypeOrdering.h"#include"clang/AST/StmtVisitor.h"#include"clang/Lex/Preprocessor.h"#include"clang/Basic/Diagnostic.h"#include"clang/Parse/DeclSpec.h"
<