blob: 3ca7d4d01d1cb13b8167b6a891f49ff5aa57d50f [file] [log] [blame]
Anton Korobeynikovfc5d5132010-01-10 14:38:13 +00001//===--- AttrImpl.cpp - Classes for representing attributes -----*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file contains out-of-line virtual methods for Attr classes.
11//
12//===----------------------------------------------------------------------===//
13
Anton Korobeynikovfc5d5132010-01-10 14:38:13 +000014#include "clang/AST/Attr.h"
15#include "clang/AST/ASTContext.h"
Sean Huntcf807c42010-08-18 23:23:40 +000016#include "clang/AST/Type.h"
17#include "clang/AST/Expr.h"
Anton Korobeynikovfc5d5132010-01-10 14:38:13 +000018using namespace clang;
19
Douglas Gregor1de22a22010-07-25 18:32:30 +000020Attr::~Attr() { }
Ted Kremenek3d2c43e2010-02-11 05:28:37 +000021
Sean Huntcf807c42010-08-18 23:23:40 +000022#include "clang/AST/AttrImpl.inc"