1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 03:28:20 +02:00

Fixed adding emitted interfaces when no emitted code is added

This commit is contained in:
Brian Fiete 2021-12-16 12:06:38 -05:00
parent 7115cb8e82
commit af4a402a53
2 changed files with 7 additions and 2 deletions

View file

@ -699,6 +699,11 @@ public:
mMethodInstance = NULL;
mFailed = false;
}
bool HasEmissions()
{
return !mEmitData.IsEmpty() || !mInterfaces.IsEmpty();
}
};
class CeContext