blob: a347c67ba8e18b8ed5d0e1a36f3fd81831ed5106 [file] [log] [blame]
Zachary Turner0e9e6632015-02-06 20:30:52 +00001//===- PDBInterfaceAnchors.h - defines class anchor funcions ----*- 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// Class anchors are necessary per the LLVM Coding style guide, to ensure that
10// the vtable is only generated in this object file, and not in every object
11// file that incldues the corresponding header.
12//===----------------------------------------------------------------------===//
13
14#include "llvm/DebugInfo/PDB/IPDBDataStream.h"
15#include "llvm/DebugInfo/PDB/IPDBLineNumber.h"
Chandler Carruth71f308a2015-02-13 09:09:03 +000016#include "llvm/DebugInfo/PDB/IPDBRawSymbol.h"
Zachary Turner0e9e6632015-02-06 20:30:52 +000017#include "llvm/DebugInfo/PDB/IPDBSession.h"
Zachary Turner52c9f882015-02-14 03:53:56 +000018#include "llvm/DebugInfo/PDB/IPDBRawSymbol.h"
Zachary Turner0e9e6632015-02-06 20:30:52 +000019
Zachary Turner0e9e6632015-02-06 20:30:52 +000020using namespace llvm;
Zachary Turnerec28fc32016-05-04 20:32:13 +000021using namespace llvm::pdb;
Zachary Turner0e9e6632015-02-06 20:30:52 +000022
23IPDBSession::~IPDBSession() {}
24
25IPDBDataStream::~IPDBDataStream() {}
26
27IPDBRawSymbol::~IPDBRawSymbol() {}
28
Zachary Turner0e9e6632015-02-06 20:30:52 +000029IPDBLineNumber::~IPDBLineNumber() {}