mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 12:32:20 +02:00
Deleted type protection in EmitGCMarkValue, RequestExtraCompile feature
This commit is contained in:
parent
6e0cabf8aa
commit
471897a150
6 changed files with 81 additions and 1 deletions
|
@ -1594,6 +1594,17 @@ public:
|
|||
|
||||
class BfPassInstance
|
||||
{
|
||||
public:
|
||||
struct StateInfo
|
||||
{
|
||||
int mOutStreamSize;
|
||||
int mErrorsSize;
|
||||
int mWarningCount;
|
||||
int mDeferredErrorCount;
|
||||
int mFailedIdx;
|
||||
int mWarnIdx;
|
||||
};
|
||||
|
||||
public:
|
||||
const int sMaxDisplayErrors = 100;
|
||||
const int sMaxErrors = 1000;
|
||||
|
@ -1636,6 +1647,9 @@ public:
|
|||
|
||||
~BfPassInstance();
|
||||
|
||||
StateInfo GetState();
|
||||
void RestoreState(StateInfo stateInfo);
|
||||
|
||||
void ClearErrors();
|
||||
bool HasFailed();
|
||||
bool HasMessages();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue