PDBInterfaceAnchors.cpp 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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-exception
  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 includes the corresponding header.
  11. //===----------------------------------------------------------------------===//
  12. #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"
  20. using namespace llvm;
  21. using namespace llvm::pdb;
  22. IPDBSession::~IPDBSession() = default;
  23. IPDBDataStream::~IPDBDataStream() = default;
  24. IPDBRawSymbol::~IPDBRawSymbol() = default;
  25. IPDBLineNumber::~IPDBLineNumber() = default;
  26. IPDBTable::~IPDBTable() = default;
  27. IPDBInjectedSource::~IPDBInjectedSource() = default;
  28. IPDBSectionContrib::~IPDBSectionContrib() = default;
  29. IPDBFrameData::~IPDBFrameData() = default;