Path: blob/main/contrib/llvm-project/llvm/lib/DebugInfo/PDB/PDBInterfaceAnchors.cpp
35266 views
//===- PDBInterfaceAnchors.h - defines class anchor functions ---*- C++ -*-===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//7// Class anchors are necessary per the LLVM Coding style guide, to ensure that8// the vtable is only generated in this object file, and not in every object9// file that includes the corresponding header.10//===----------------------------------------------------------------------===//1112#include "llvm/DebugInfo/PDB/IPDBDataStream.h"13#include "llvm/DebugInfo/PDB/IPDBFrameData.h"14#include "llvm/DebugInfo/PDB/IPDBInjectedSource.h"15#include "llvm/DebugInfo/PDB/IPDBLineNumber.h"16#include "llvm/DebugInfo/PDB/IPDBRawSymbol.h"17#include "llvm/DebugInfo/PDB/IPDBSectionContrib.h"18#include "llvm/DebugInfo/PDB/IPDBSession.h"19#include "llvm/DebugInfo/PDB/IPDBTable.h"2021using namespace llvm;22using namespace llvm::pdb;2324IPDBSession::~IPDBSession() = default;2526IPDBDataStream::~IPDBDataStream() = default;2728IPDBRawSymbol::~IPDBRawSymbol() = default;2930IPDBLineNumber::~IPDBLineNumber() = default;3132IPDBTable::~IPDBTable() = default;3334IPDBInjectedSource::~IPDBInjectedSource() = default;3536IPDBSectionContrib::~IPDBSectionContrib() = default;3738IPDBFrameData::~IPDBFrameData() = default;394041