2010-01-10 22:38:13 +08:00
|
|
|
//===--- AttrImpl.cpp - Classes for representing attributes -----*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2015-03-20 00:06:49 +08:00
|
|
|
// This file contains out-of-line methods for Attr classes.
|
2010-01-10 22:38:13 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "clang/AST/Attr.h"
|
|
|
|
#include "clang/AST/ASTContext.h"
|
2010-08-19 07:23:40 +08:00
|
|
|
#include "clang/AST/Expr.h"
|
2012-12-04 17:13:33 +08:00
|
|
|
#include "clang/AST/Type.h"
|
2013-09-12 03:47:58 +08:00
|
|
|
#include "llvm/ADT/StringSwitch.h"
|
2010-01-10 22:38:13 +08:00
|
|
|
using namespace clang;
|
|
|
|
|
2010-08-19 07:23:40 +08:00
|
|
|
#include "clang/AST/AttrImpl.inc"
|