mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-14 14:24:10 +02:00
Fixed uninitialized variable
This commit is contained in:
parent
079ac03d38
commit
198acef1c6
1 changed files with 1 additions and 1 deletions
|
@ -5874,7 +5874,7 @@ void BfModule::Visit(BfForEachStatement* forEachStmt)
|
||||||
auto targetTypeInstance = target.mType->ToTypeInstance();
|
auto targetTypeInstance = target.mType->ToTypeInstance();
|
||||||
|
|
||||||
itr = target;
|
itr = target;
|
||||||
bool hadGetEnumeratorType;
|
bool hadGetEnumeratorType = false;
|
||||||
|
|
||||||
if (targetTypeInstance != NULL)
|
if (targetTypeInstance != NULL)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue