1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 11:38:21 +02:00

Better COFF errors

This commit is contained in:
Brian Fiete 2022-01-18 10:34:51 -05:00
parent 95a27d5e93
commit ce288ad813
3 changed files with 15 additions and 2 deletions

View file

@ -5801,6 +5801,16 @@ void COFF::ParseSymbolStream(CvSymStreamType symStreamType)
}
}
void COFF::Fail(const StringImpl& error)
{
DbgModule::Fail(StrFormat("%s in %s", error.c_str(), mPDBPath.c_str()));
}
void COFF::HardFail(const StringImpl& error)
{
DbgModule::HardFail(StrFormat("%s in %s", error.c_str(), mPDBPath.c_str()));
}
void COFF::ParseGlobalsData()
{
if (!mPDBLoaded)