//===- PDBSymbolCompilandEnv.cpp - compiland env variables ------*- 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/IPDBRawSymbol.h" #include "llvm/DebugInfo/PDB/PDBSymbol.h" #include "llvm/DebugInfo/PDB/PDBSymbolCompilandEnv.h" using namespace llvm; std::string PDBSymbolCompilandEnv::getValue() const { // call RawSymbol->getValue() and convert the result to an std::string. return std::string(); }