mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-09 03:52:19 +02:00
Fixed uninitialized local variable
This commit is contained in:
parent
d5a2db5a06
commit
25b8cdc808
1 changed files with 1 additions and 1 deletions
|
@ -3747,7 +3747,7 @@ void BfCompiler::ProcessAutocompleteTempType()
|
||||||
|
|
||||||
if (tempTypeDef->mTypeCode == BfTypeCode_Extension)
|
if (tempTypeDef->mTypeCode == BfTypeCode_Extension)
|
||||||
{
|
{
|
||||||
BfTypeInstance* outerTypeInstance;
|
BfTypeInstance* outerTypeInstance = NULL;
|
||||||
|
|
||||||
if (tempTypeDef->mOuterType != NULL)
|
if (tempTypeDef->mOuterType != NULL)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue