//===------- SemaTemplateInstantiate.cpp - C++ Template Instantiation ------===///// The LLVM Compiler Infrastructure//// This file is distributed under the University of Illinois Open Source// License. See LICENSE.TXT for details.//===----------------------------------------------------------------------===///// This file implements C++ template instantiation.////===----------------------------------------------------------------------===/#include"Sema.h"#include"TreeTransform.h"#include"Lookup.h"#include"clang/AST/ASTConsumer.h"#include"clang/AST/ASTContext.h"#include"clang/AST/Expr.h"#include"clang/AST/DeclTemplate.h"#include"clang/Parse/DeclSpec.h"#include"clang/Basic/LangOptions.h"usingnamespaceclang;//===----------------------------------------------------------------------===/// Template Instantiation Support//===--------------------------