X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;ds=sidebyside;f=lib%2FDebugInfo%2FPDB%2FPDBSymbolCompilandEnv.cpp;h=9be32d3602153c045303e566baad6017319e6693;hb=926749af90fbd6e4db5988628ecb81fbfac67afb;hp=762c2238926898a6ffd2359c81e1781ffc7536f9;hpb=44797c5a0907c0c0be04b2b39aada1aa0e3099f4;p=oota-llvm.git diff --git a/lib/DebugInfo/PDB/PDBSymbolCompilandEnv.cpp b/lib/DebugInfo/PDB/PDBSymbolCompilandEnv.cpp index 762c2238926..9be32d36021 100644 --- a/lib/DebugInfo/PDB/PDBSymbolCompilandEnv.cpp +++ b/lib/DebugInfo/PDB/PDBSymbolCompilandEnv.cpp @@ -15,7 +15,13 @@ using namespace llvm; +PDBSymbolCompilandEnv::PDBSymbolCompilandEnv( + IPDBSession &PDBSession, std::unique_ptr Symbol) + : PDBSymbol(PDBSession, std::move(Symbol)) {} + std::string PDBSymbolCompilandEnv::getValue() const { // call RawSymbol->getValue() and convert the result to an std::string. return std::string(); } + +void PDBSymbolCompilandEnv::dump(llvm::raw_ostream &OS) const {}