brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.4 KiB · d51091d Raw
40 lines · cpp
1//===- PDBInterfaceAnchors.h - defines class anchor functions ---*- C++ -*-===//2//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-exception6//7//===----------------------------------------------------------------------===//8// Class anchors are necessary per the LLVM Coding style guide, to ensure that9// the vtable is only generated in this object file, and not in every object10// file that includes the corresponding header.11//===----------------------------------------------------------------------===//12 13#include "llvm/DebugInfo/PDB/IPDBDataStream.h"14#include "llvm/DebugInfo/PDB/IPDBFrameData.h"15#include "llvm/DebugInfo/PDB/IPDBInjectedSource.h"16#include "llvm/DebugInfo/PDB/IPDBLineNumber.h"17#include "llvm/DebugInfo/PDB/IPDBRawSymbol.h"18#include "llvm/DebugInfo/PDB/IPDBSectionContrib.h"19#include "llvm/DebugInfo/PDB/IPDBSession.h"20#include "llvm/DebugInfo/PDB/IPDBTable.h"21 22using namespace llvm;23using namespace llvm::pdb;24 25IPDBSession::~IPDBSession() = default;26 27IPDBDataStream::~IPDBDataStream() = default;28 29IPDBRawSymbol::~IPDBRawSymbol() = default;30 31IPDBLineNumber::~IPDBLineNumber() = default;32 33IPDBTable::~IPDBTable() = default;34 35IPDBInjectedSource::~IPDBInjectedSource() = default;36 37IPDBSectionContrib::~IPDBSectionContrib() = default;38 39IPDBFrameData::~IPDBFrameData() = default;40