Fix gcc warning

This commit is contained in:
Arseny Kapoulkine 2022-08-25 14:10:12 -07:00
parent 9aa4677829
commit 5eb4fb6089
1 changed files with 1 additions and 1 deletions

View File

@ -213,7 +213,7 @@ Nth nth(int nth = 1)
struct FindNthOccurenceOf : public AstVisitor
{
Nth requestedNth;
size_t currentOccurrence = 0;
int currentOccurrence = 0;
AstNode* theNode = nullptr;
FindNthOccurenceOf(Nth nth);