mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-09 20:12: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;
|
StringT<128> args;
|
||||||
|
|
||||||
propName += "this[";
|
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)
|
if (paramIdx > 0)
|
||||||
args += ", ";
|
args += ", ";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue