blob: c62796507a0157bfc35855fbd082ebfe7a1e5a1b [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"
Zachary Turner679aead2018-03-13 17:46:06 +000015#include "llvm/DebugInfo/PDB/IPDBInjectedSource.h"
Zachary Turner0e9e6632015-02-06 20:30:52 +000016#include "llvm/DebugInfo/PDB/IPDBLineNumber.h"
Chandler Carruth71f308a2015-02-13 09:09:03 +000017#include "llvm/DebugInfo/PDB/IPDBRawSymbol.h"
Aaron Smith523de052018-03-22 04:08:15 +000018#include "llvm/DebugInfo/PDB/IPDBSectionContrib.h"
Zachary Turner0e9e6632015-02-06 20:30:52 +000019#include "llvm/DebugInfo/PDB/IPDBSession.h"
Aaron Smith89bca9e2017-11-16 14:33:09 +000020#include "llvm/DebugInfo/PDB/IPDBTable.h"
Zachary Turner0e9e6632015-02-06 20:30:52 +000021
Zachary Turner0e9e6632015-02-06 20:30:52 +000022using namespace llvm;
Zachary Turnerec28fc32016-05-04 20:32:13 +000023using namespace llvm::pdb;
Zachary Turner0e9e6632015-02-06 20:30:52 +000024
Eugene Zelenko570e39a2016-11-23 23:16:32 +000025IPDBSession::~IPDBSession() = default;
Zachary Turner0e9e6632015-02-06 20:30:52 +000026
Eugene Zelenko570e39a2016-11-23 23:16:32 +000027IPDBDataStream::~IPDBDataStream() = default;
Zachary Turner0e9e6632015-02-06 20:30:52 +000028
Eugene Zelenko570e39a2016-11-23 23:16:32 +000029IPDBRawSymbol::~IPDBRawSymbol() = default;
Zachary Turner0e9e6632015-02-06 20:30:52 +000030
Eugene Zelenko570e39a2016-11-23 23:16:32 +000031IPDBLineNumber::~IPDBLineNumber() = default;
Aaron Smith89bca9e2017-11-16 14:33:09 +000032
33IPDBTable::~IPDBTable() = default;
Zachary Turner679aead2018-03-13 17:46:06 +000034
35IPDBInjectedSource::~IPDBInjectedSource() = default;
Aaron Smith523de052018-03-22 04:08:15 +000036
37IPDBSectionContrib::~IPDBSectionContrib() = default;