PDBSymbolTypeFunctionArg.cpp 755 B

123456789101112131415161718192021222324
  1. //===- PDBSymbolTypeFunctionArg.cpp - --------------------------*- 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. #include "llvm/DebugInfo/PDB/PDBSymbolTypeFunctionArg.h"
  10. #include "llvm/DebugInfo/PDB/PDBSymDumper.h"
  11. #include <utility>
  12. using namespace llvm;
  13. PDBSymbolTypeFunctionArg::PDBSymbolTypeFunctionArg(
  14. const IPDBSession &PDBSession, std::unique_ptr<IPDBRawSymbol> Symbol)
  15. : PDBSymbol(PDBSession, std::move(Symbol)) {}
  16. void PDBSymbolTypeFunctionArg::dump(PDBSymDumper &Dumper) const {
  17. Dumper.dump(*this);
  18. }