Anton Korobeynikov | 3d364fd | 2010-01-10 14:38:13 +0000 | [diff] [blame] | 1 | //===--- 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 Korobeynikov | 3d364fd | 2010-01-10 14:38:13 +0000 | [diff] [blame] | 14 | #include "clang/AST/Attr.h" |
| 15 | #include "clang/AST/ASTContext.h" |
Alexis Hunt | dcfba7b | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 16 | #include "clang/AST/Expr.h" |
Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 17 | #include "clang/AST/Type.h" |
Anton Korobeynikov | 3d364fd | 2010-01-10 14:38:13 +0000 | [diff] [blame] | 18 | using namespace clang; |
| 19 | |
Douglas Gregor | 717ceea | 2010-07-25 18:32:30 +0000 | [diff] [blame] | 20 | Attr::~Attr() { } |
Ted Kremenek | 7f4945a | 2010-02-11 05:28:37 +0000 | [diff] [blame] | 21 | |
David Blaikie | 68e081d | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 22 | void InheritableAttr::anchor() { } |
| 23 | |
| 24 | void InheritableParamAttr::anchor() { } |
| 25 | |
Reid Kleckner | 6a47608 | 2013-03-26 18:30:28 +0000 | [diff] [blame] | 26 | void MSInheritanceAttr::anchor() { } |
| 27 | |
Alexis Hunt | dcfba7b | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 28 | #include "clang/AST/AttrImpl.inc" |