2010-01-10 22:38:13 +08:00
|
|
|
//===--- AttrImpl.cpp - Classes for representing attributes -----*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains out-of-line virtual methods for Attr classes.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "clang/AST/Attr.h"
|
|
|
|
#include "clang/AST/ASTContext.h"
|
2010-08-19 07:23:40 +08:00
|
|
|
#include "clang/AST/Expr.h"
|
2012-12-04 17:13:33 +08:00
|
|
|
#include "clang/AST/Type.h"
|
2010-01-10 22:38:13 +08:00
|
|
|
using namespace clang;
|
|
|
|
|
2010-07-26 02:32:30 +08:00
|
|
|
Attr::~Attr() { }
|
2010-02-11 13:28:37 +08:00
|
|
|
|
2011-12-20 10:48:34 +08:00
|
|
|
void InheritableAttr::anchor() { }
|
|
|
|
|
|
|
|
void InheritableParamAttr::anchor() { }
|
|
|
|
|
2013-03-27 02:30:28 +08:00
|
|
|
void MSInheritanceAttr::anchor() { }
|
|
|
|
|
2010-08-19 07:23:40 +08:00
|
|
|
#include "clang/AST/AttrImpl.inc"
|