//===- PDBSymbolExe.cpp - ---------------------------------------*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// #include #include "llvm/DebugInfo/PDB/PDBSymbol.h" #include "llvm/DebugInfo/PDB/PDBSymbolExe.h" #include "llvm/Support/ConvertUTF.h" #include "llvm/Support/FileSystem.h" #include "llvm/Support/raw_ostream.h" using namespace llvm; PDBSymbolExe::PDBSymbolExe(std::unique_ptr Symbol) : PDBSymbol(std::move(Symbol)) {} void PDBSymbolExe::dump(llvm::raw_ostream &OS) const { }