1 //===- 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/IPDBFrameData.h" 16 #include "llvm/DebugInfo/PDB/IPDBInjectedSource.h" 17 #include "llvm/DebugInfo/PDB/IPDBLineNumber.h" 18 #include "llvm/DebugInfo/PDB/IPDBRawSymbol.h" 19 #include "llvm/DebugInfo/PDB/IPDBSectionContrib.h" 20 #include "llvm/DebugInfo/PDB/IPDBSession.h" 21 #include "llvm/DebugInfo/PDB/IPDBTable.h" 22 23 using namespace llvm; 24 using namespace llvm::pdb; 25 26 IPDBSession::~IPDBSession() = default; 27 28 IPDBDataStream::~IPDBDataStream() = default; 29 30 IPDBRawSymbol::~IPDBRawSymbol() = default; 31 32 IPDBLineNumber::~IPDBLineNumber() = default; 33 34 IPDBTable::~IPDBTable() = default; 35 36 IPDBInjectedSource::~IPDBInjectedSource() = default; 37 38 IPDBSectionContrib::~IPDBSectionContrib() = default; 39 40 IPDBFrameData::~IPDBFrameData() = default; 41