mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-14 04:03:46 +00:00
clean up math varsize complaints
This commit is contained in:
parent
1230d0d280
commit
0ce2da3a23
30 changed files with 61 additions and 56 deletions
|
|
@ -1556,7 +1556,7 @@ U32 FunctionDeclStmtNode::compileStmt(CodeStream& codeStream, U32 ip)
|
|||
// map local variables to registers for this function.
|
||||
// Note we have to map these in order because the table itself is ordered by the register id.
|
||||
CompilerLocalVariableToRegisterMappingTable* tbl = &getFunctionVariableMappingTable();
|
||||
for (size_t i = 0; i < gFuncVars->variableNameMap.size(); ++i)
|
||||
for (S32 i = 0; i < gFuncVars->variableNameMap.size(); ++i)
|
||||
{
|
||||
StringTableEntry varName = gFuncVars->variableNameMap[i];
|
||||
tbl->add(fnName, nameSpace, varName);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue