blob: 7af3c8b16263b9d095f8fa933d03b642be680086 [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"
Aaron Ballman682ee422013-09-11 19:47:58 +000018#include "llvm/ADT/StringSwitch.h"
Anton Korobeynikov3d364fd2010-01-10 14:38:13 +000019using namespace clang;
20
Douglas Gregor717ceea2010-07-25 18:32:30 +000021Attr::~Attr() { }
Ted Kremenek7f4945a2010-02-11 05:28:37 +000022
David Blaikie68e081d2011-12-20 02:48:34 +000023void InheritableAttr::anchor() { }
24
25void InheritableParamAttr::anchor() { }
26
Reid Kleckner6a476082013-03-26 18:30:28 +000027void MSInheritanceAttr::anchor() { }
28
Alexis Huntdcfba7b2010-08-18 23:23:40 +000029#include "clang/AST/AttrImpl.inc"