Anton Korobeynikov | 3d364fd | 2010-01-10 14:38:13 +0000 | [diff] [blame] | 1 | //===--- AttrImpl.cpp - Classes for representing attributes -----*- C++ -*-===// |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Anton Korobeynikov | 3d364fd | 2010-01-10 14:38:13 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | // |
Benjamin Kramer | 845e32c | 2015-03-19 16:06:49 +0000 | [diff] [blame] | 9 | // This file contains out-of-line methods for Attr classes. |
Anton Korobeynikov | 3d364fd | 2010-01-10 14:38:13 +0000 | [diff] [blame] | 10 | // |
| 11 | //===----------------------------------------------------------------------===// |
| 12 | |
Anton Korobeynikov | 3d364fd | 2010-01-10 14:38:13 +0000 | [diff] [blame] | 13 | #include "clang/AST/ASTContext.h" |
Mehdi Amini | 9670f84 | 2016-07-18 19:02:11 +0000 | [diff] [blame] | 14 | #include "clang/AST/Attr.h" |
Alexis Hunt | dcfba7b | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 15 | #include "clang/AST/Expr.h" |
Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 16 | #include "clang/AST/Type.h" |
Anton Korobeynikov | 3d364fd | 2010-01-10 14:38:13 +0000 | [diff] [blame] | 17 | using namespace clang; |
| 18 | |
Alexis Hunt | dcfba7b | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 19 | #include "clang/AST/AttrImpl.inc" |