PDBInterfaceAnchors.cpp 1.0 KB

12345678910111213141516171819202122232425262728
  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. #include "llvm/DebugInfo/PDB/IPDBDataStream.h"
  14. #include "llvm/DebugInfo/PDB/IPDBLineNumber.h"
  15. #include "llvm/DebugInfo/PDB/IPDBRawSymbol.h"
  16. #include "llvm/DebugInfo/PDB/IPDBSession.h"
  17. #include "llvm/DebugInfo/PDB/IPDBRawSymbol.h"
  18. using namespace llvm;
  19. IPDBSession::~IPDBSession() {}
  20. IPDBDataStream::~IPDBDataStream() {}
  21. IPDBRawSymbol::~IPDBRawSymbol() {}
  22. IPDBLineNumber::~IPDBLineNumber() {}