DebugInfoPDB: Make the symbol base case hold an IPDBSession ref.
[oota-llvm.git] / lib / DebugInfo / PDB / PDBSymbolCompilandEnv.cpp
index 762c2238926898a6ffd2359c81e1781ffc7536f9..9be32d3602153c045303e566baad6017319e6693 100644 (file)
 
 using namespace llvm;
 
+PDBSymbolCompilandEnv::PDBSymbolCompilandEnv(
+    IPDBSession &PDBSession, std::unique_ptr<IPDBRawSymbol> 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 {}