blob: b06b50c9b4b88a925488c56af90da1c951bce309 [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/ASTContext.h"
Mehdi Amini9670f842016-07-18 19:02:11 +000015#include "clang/AST/Attr.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"
Anton Korobeynikov3d364fd2010-01-10 14:38:13 +000018using namespace clang;
19
Alexis Huntdcfba7b2010-08-18 23:23:40 +000020#include "clang/AST/AttrImpl.inc"