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:
parent
95a27d5e93
commit
ce288ad813
3 changed files with 15 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue