2010-01-15 10:39:40 -05: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-05-27 14:47:56 -04:00
|
|
|
// This file contains out-of-line methods for Attr classes.
|
2010-01-15 10:39:40 -05:00
|
|
|
//
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
|
|
#include "clang/AST/Attr.h"
|
|
|
|
|
#include "clang/AST/ASTContext.h"
|
2010-09-17 11:54:40 -04:00
|
|
|
#include "clang/AST/Expr.h"
|
2013-04-08 14:45:10 -04:00
|
|
|
#include "clang/AST/Type.h"
|
2013-12-21 19:07:40 -05:00
|
|
|
#include "llvm/ADT/StringSwitch.h"
|
2010-01-15 10:39:40 -05:00
|
|
|
using namespace clang;
|
|
|
|
|
|
2010-09-17 11:54:40 -04:00
|
|
|
#include "clang/AST/AttrImpl.inc"
|