mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-05 11:20:54 +01:00
Fix gcc warning
This commit is contained in:
parent
9aa4677829
commit
5eb4fb6089
1 changed files with 1 additions and 1 deletions
|
@ -213,7 +213,7 @@ Nth nth(int nth = 1)
|
||||||
struct FindNthOccurenceOf : public AstVisitor
|
struct FindNthOccurenceOf : public AstVisitor
|
||||||
{
|
{
|
||||||
Nth requestedNth;
|
Nth requestedNth;
|
||||||
size_t currentOccurrence = 0;
|
int currentOccurrence = 0;
|
||||||
AstNode* theNode = nullptr;
|
AstNode* theNode = nullptr;
|
||||||
|
|
||||||
FindNthOccurenceOf(Nth nth);
|
FindNthOccurenceOf(Nth nth);
|
||||||
|
|
Loading…
Add table
Reference in a new issue