xref: /aosp_15_r20/external/clang/lib/AST/AttrImpl.cpp (revision 67e74705e28f6214e480b399dd47ea732279e315)
1*67e74705SXin Li //===--- AttrImpl.cpp - Classes for representing attributes -----*- C++ -*-===//
2*67e74705SXin Li //
3*67e74705SXin Li //                     The LLVM Compiler Infrastructure
4*67e74705SXin Li //
5*67e74705SXin Li // This file is distributed under the University of Illinois Open Source
6*67e74705SXin Li // License. See LICENSE.TXT for details.
7*67e74705SXin Li //
8*67e74705SXin Li //===----------------------------------------------------------------------===//
9*67e74705SXin Li //
10*67e74705SXin Li //  This file contains out-of-line methods for Attr classes.
11*67e74705SXin Li //
12*67e74705SXin Li //===----------------------------------------------------------------------===//
13*67e74705SXin Li 
14*67e74705SXin Li #include "clang/AST/Attr.h"
15*67e74705SXin Li #include "clang/AST/ASTContext.h"
16*67e74705SXin Li #include "clang/AST/Expr.h"
17*67e74705SXin Li #include "clang/AST/Type.h"
18*67e74705SXin Li #include "llvm/ADT/StringSwitch.h"
19*67e74705SXin Li using namespace clang;
20*67e74705SXin Li 
21*67e74705SXin Li #include "clang/AST/AttrImpl.inc"
22