Skip to content

Commit

Permalink
Fix signedness
Browse files Browse the repository at this point in the history
  • Loading branch information
Yan Churkin committed Sep 24, 2024
1 parent 54fccda commit 853f95c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/ast/symbols/MemberSymbols.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1421,7 +1421,7 @@ PrimitiveSymbol& PrimitiveSymbol::fromSyntax(const Scope& scope,
}
}
else {
size_t nextPos = (state.at(i + 1) != '?')
size_t nextPos = (size_t)(state.at(i + 1) != '?')
? std::distance(edgeScope.begin(),
std::find(edgeScope.begin(),
edgeScope.end(),
Expand Down

0 comments on commit 853f95c

Please sign in to comment.