| Zachary Turner | 0e9e663 | 2015-02-06 20:30:52 +0000 | [diff] [blame] | 1 | //===- PDBInterfaceAnchors.h - defines class anchor funcions ----*- C++ -*-===// |
| 2 | // |
| Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| Zachary Turner | 0e9e663 | 2015-02-06 20:30:52 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | // Class anchors are necessary per the LLVM Coding style guide, to ensure that |
| 9 | // the vtable is only generated in this object file, and not in every object |
| 10 | // file that incldues the corresponding header. |
| 11 | //===----------------------------------------------------------------------===// |
| 12 | |
| 13 | #include "llvm/DebugInfo/PDB/IPDBDataStream.h" |
| Aleksandr Urakov | c43e086 | 2018-10-23 08:14:53 +0000 | [diff] [blame] | 14 | #include "llvm/DebugInfo/PDB/IPDBFrameData.h" |
| Zachary Turner | 679aead | 2018-03-13 17:46:06 +0000 | [diff] [blame] | 15 | #include "llvm/DebugInfo/PDB/IPDBInjectedSource.h" |
| Zachary Turner | 0e9e663 | 2015-02-06 20:30:52 +0000 | [diff] [blame] | 16 | #include "llvm/DebugInfo/PDB/IPDBLineNumber.h" |
| Chandler Carruth | 71f308a | 2015-02-13 09:09:03 +0000 | [diff] [blame] | 17 | #include "llvm/DebugInfo/PDB/IPDBRawSymbol.h" |
| Aaron Smith | 523de05 | 2018-03-22 04:08:15 +0000 | [diff] [blame] | 18 | #include "llvm/DebugInfo/PDB/IPDBSectionContrib.h" |
| Zachary Turner | 0e9e663 | 2015-02-06 20:30:52 +0000 | [diff] [blame] | 19 | #include "llvm/DebugInfo/PDB/IPDBSession.h" |
| Aaron Smith | 89bca9e | 2017-11-16 14:33:09 +0000 | [diff] [blame] | 20 | #include "llvm/DebugInfo/PDB/IPDBTable.h" |
| Zachary Turner | 0e9e663 | 2015-02-06 20:30:52 +0000 | [diff] [blame] | 21 | |
| Zachary Turner | 0e9e663 | 2015-02-06 20:30:52 +0000 | [diff] [blame] | 22 | using namespace llvm; |
| Zachary Turner | ec28fc3 | 2016-05-04 20:32:13 +0000 | [diff] [blame] | 23 | using namespace llvm::pdb; |
| Zachary Turner | 0e9e663 | 2015-02-06 20:30:52 +0000 | [diff] [blame] | 24 | |
| Eugene Zelenko | 570e39a | 2016-11-23 23:16:32 +0000 | [diff] [blame] | 25 | IPDBSession::~IPDBSession() = default; |
| Zachary Turner | 0e9e663 | 2015-02-06 20:30:52 +0000 | [diff] [blame] | 26 | |
| Eugene Zelenko | 570e39a | 2016-11-23 23:16:32 +0000 | [diff] [blame] | 27 | IPDBDataStream::~IPDBDataStream() = default; |
| Zachary Turner | 0e9e663 | 2015-02-06 20:30:52 +0000 | [diff] [blame] | 28 | |
| Eugene Zelenko | 570e39a | 2016-11-23 23:16:32 +0000 | [diff] [blame] | 29 | IPDBRawSymbol::~IPDBRawSymbol() = default; |
| Zachary Turner | 0e9e663 | 2015-02-06 20:30:52 +0000 | [diff] [blame] | 30 | |
| Eugene Zelenko | 570e39a | 2016-11-23 23:16:32 +0000 | [diff] [blame] | 31 | IPDBLineNumber::~IPDBLineNumber() = default; |
| Aaron Smith | 89bca9e | 2017-11-16 14:33:09 +0000 | [diff] [blame] | 32 | |
| 33 | IPDBTable::~IPDBTable() = default; |
| Zachary Turner | 679aead | 2018-03-13 17:46:06 +0000 | [diff] [blame] | 34 | |
| 35 | IPDBInjectedSource::~IPDBInjectedSource() = default; |
| Aaron Smith | 523de05 | 2018-03-22 04:08:15 +0000 | [diff] [blame] | 36 | |
| 37 | IPDBSectionContrib::~IPDBSectionContrib() = default; |
| Aleksandr Urakov | c43e086 | 2018-10-23 08:14:53 +0000 | [diff] [blame] | 38 | |
| 39 | IPDBFrameData::~IPDBFrameData() = default; |