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 | // |
Benjamin Kramer | 845e32c | 2015-03-19 16:06:49 +0000 | [diff] [blame] | 10 | // This file contains out-of-line methods for Attr classes. |
Anton Korobeynikov | 3d364fd | 2010-01-10 14:38:13 +0000 | [diff] [blame] | 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" |
Aaron Ballman | 682ee42 | 2013-09-11 19:47:58 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/StringSwitch.h" |
Anton Korobeynikov | 3d364fd | 2010-01-10 14:38:13 +0000 | [diff] [blame] | 19 | using namespace clang; |
| 20 | |
Alexis Hunt | dcfba7b | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 21 | #include "clang/AST/AttrImpl.inc" |