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

Release mode fix

This commit is contained in:
Brian Fiete 2021-01-19 07:56:18 -08:00
parent c0e19171d4
commit 15c62583a2
4 changed files with 28 additions and 13 deletions

View file

@ -3005,6 +3005,12 @@ void BeModule::AddInst(BeInst* inst)
void BeModule::ToString(StringImpl& str, BeType* type)
{
if (type == NULL)
{
str += "<MissingType>";
return;
}
switch (type->mTypeCode)
{
case BeTypeCode_None: