mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-09 12:02:21 +02:00
Fixed loop index type
This commit is contained in:
parent
5d3b34e6c7
commit
532de216a1
1 changed files with 1 additions and 1 deletions
|
@ -2313,7 +2313,7 @@ bool BfAutoComplete::GetMethodInfo(BfMethodInstance* methodInst, StringImpl* sho
|
|||
StringT<128> args;
|
||||
|
||||
propName += "this[";
|
||||
for (size_t paramIdx = 0, count = methodInst->GetParamCount(); paramIdx < count; ++paramIdx)
|
||||
for (int paramIdx = 0, count = methodInst->GetParamCount(); paramIdx < count; ++paramIdx)
|
||||
{
|
||||
if (paramIdx > 0)
|
||||
args += ", ";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue