Removed unused function mistakenly left in, triggering -Werror.

llvm-svn: 228517
This commit is contained in:
Zachary Turner 2015-02-08 00:41:31 +00:00
parent 21473f7bb6
commit 92545a03df
1 changed files with 0 additions and 21 deletions

View File

@ -15,29 +15,8 @@
#include "llvm/Support/FileSystem.h"
#include "llvm/Support/raw_ostream.h"
#if defined(_WIN32)
#include <windows.h>
#endif
using namespace llvm;
namespace {
std::string GuidToString(PDB_UniqueId *Id) {
#if defined(_WIN32)
GUID *Guid = reinterpret_cast<GUID *>(Id);
OLECHAR GuidBuf[40];
int Result = StringFromGUID2(*Guid, GuidBuf, 39);
const char *InputBytes = reinterpret_cast<const char *>(GuidBuf);
std::string ResultString;
convertUTF16ToUTF8String(ArrayRef<char>(InputBytes, Result * 2),
ResultString);
return ResultString;
#else
return std::string();
#endif
}
}
PDBSymbolExe::PDBSymbolExe(std::unique_ptr<IPDBRawSymbol> Symbol)
: PDBSymbol(std::move(Symbol)) {}