mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 03:28:20 +02:00
Handle zero-sized enums (<= 1 member)
This commit is contained in:
parent
7b69509b7b
commit
14a3dd8e7d
21 changed files with 461 additions and 135 deletions
|
@ -8608,7 +8608,9 @@ void BfCompiler::GenerateAutocompleteInfo()
|
|||
}
|
||||
}
|
||||
|
||||
autoCompleteResultString += "invoke\t" + methodText + "\n";
|
||||
autoCompleteResultString += "invoke\t" + methodText;
|
||||
autoCompleteResultString += StrFormat("\t%d", methodEntry.mArgMatchCount);
|
||||
autoCompleteResultString += "\n";
|
||||
|
||||
idx++;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue