blob: b44dc578ea4edff7107c7a4a695c4595bbbc50c4 [file] [log] [blame]
Zachary Turner0e9e6632015-02-06 20:30:52 +00001//===- PDBSymbolCompilandEnv.cpp - compiland env variables ------*- 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
Zachary Turner52c9f882015-02-14 03:53:56 +000010#include "llvm/DebugInfo/PDB/PDBSymbolCompilandEnv.h"
11
Zachary Turner0e9e6632015-02-06 20:30:52 +000012#include "llvm/DebugInfo/PDB/IPDBRawSymbol.h"
13#include "llvm/DebugInfo/PDB/PDBSymbol.h"
Zachary Turner52c9f882015-02-14 03:53:56 +000014
Chandler Carruth71f308a2015-02-13 09:09:03 +000015#include <utility>
Zachary Turner0e9e6632015-02-06 20:30:52 +000016
17using namespace llvm;
18
Zachary Turner21473f72015-02-08 00:29:29 +000019PDBSymbolCompilandEnv::PDBSymbolCompilandEnv(
Zachary Turner98571ed2015-02-08 22:53:53 +000020 const IPDBSession &PDBSession, std::unique_ptr<IPDBRawSymbol> Symbol)
Zachary Turnerbae16b32015-02-08 20:58:09 +000021 : PDBSymbol(PDBSession, std::move(Symbol)) {}
Zachary Turner21473f72015-02-08 00:29:29 +000022
Zachary Turner0e9e6632015-02-06 20:30:52 +000023std::string PDBSymbolCompilandEnv::getValue() const {
24 // call RawSymbol->getValue() and convert the result to an std::string.
25 return std::string();
26}
Zachary Turner21473f72015-02-08 00:29:29 +000027
Zachary Turnera5549172015-02-10 22:43:25 +000028void PDBSymbolCompilandEnv::dump(raw_ostream &OS, int Indent,
Zachary Turnerc0acf682015-02-15 20:27:53 +000029 PDB_DumpLevel Level, PDB_DumpFlags Flags) const {}