blob: cb608700133c06da67238ef689ea7a9478f987e0 [file] [log] [blame]
Anton Korobeynikov3d364fd2010-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//
Benjamin Kramer845e32c2015-03-19 16:06:49 +000010// This file contains out-of-line methods for Attr classes.
Anton Korobeynikov3d364fd2010-01-10 14:38:13 +000011//
12//===----------------------------------------------------------------------===//
13
Anton Korobeynikov3d364fd2010-01-10 14:38:13 +000014#include "clang/AST/Attr.h"
15#include "clang/AST/ASTContext.h"
Alexis Huntdcfba7b2010-08-18 23:23:40 +000016#include "clang/AST/Expr.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000017#include "clang/AST/Type.h"
Aaron Ballman682ee422013-09-11 19:47:58 +000018#include "llvm/ADT/StringSwitch.h"
Anton Korobeynikov3d364fd2010-01-10 14:38:13 +000019using namespace clang;
20
Alexis Huntdcfba7b2010-08-18 23:23:40 +000021#include "clang/AST/AttrImpl.inc"