blob: db3d632bdeb92d32d42a533c6d6102ba1092339a [file] [log] [blame]
Chris Lattnera11999d2006-10-15 22:34:45 +00001//===--- Decl.cpp - Declaration AST Node Implementation -------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Chris Lattner and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Decl class and subclasses.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/AST/Decl.h"
Chris Lattner6d9a6852006-10-25 05:11:20 +000015using namespace llvm;
16using namespace clang;
Chris Lattnera11999d2006-10-15 22:34:45 +000017
Chris Lattner6d9a6852006-10-25 05:11:20 +000018// Out-of-line virtual method providing a home for Decl.
19Decl::~Decl() {
20}