blob: daf65e56bdc664cbbfe3359848b356ce27239945 [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//
10// This file contains out-of-line virtual methods for Attr classes.
11//
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"
Anton Korobeynikov3d364fd2010-01-10 14:38:13 +000018using namespace clang;
19
Douglas Gregor717ceea2010-07-25 18:32:30 +000020Attr::~Attr() { }
Ted Kremenek7f4945a2010-02-11 05:28:37 +000021
David Blaikie68e081d2011-12-20 02:48:34 +000022void InheritableAttr::anchor() { }
23
24void InheritableParamAttr::anchor() { }
25
Reid Kleckner6a476082013-03-26 18:30:28 +000026void MSInheritanceAttr::anchor() { }
27
Alexis Huntdcfba7b2010-08-18 23:23:40 +000028#include "clang/AST/AttrImpl.inc"