mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 19:48:20 +02:00
Added constant string appending with + operator, const string fixes
This commit is contained in:
parent
41cb0052b2
commit
c92bc523db
14 changed files with 158 additions and 34 deletions
|
@ -1247,7 +1247,7 @@ void BeCOFFObject::DbgOutputLocalVar(BeDbgFunction* dbgFunc, BeDbgVariable* dbgV
|
|||
{
|
||||
if (auto beConst = BeValueDynCast<BeConstant>(dbgVar->mValue))
|
||||
{
|
||||
if (!beConst->mType->IsPointer())
|
||||
if ((beConst->mType != NULL) && (!beConst->mType->IsPointer()))
|
||||
{
|
||||
int64 writeVal = beConst->mInt64;
|
||||
if (beConst->mType->mTypeCode == BfTypeCode_Single)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue