Skip to content

Commit

Permalink
Fix unused 'to' call.
Browse files Browse the repository at this point in the history
Signed-off-by: Danila Fedorin <[email protected]>
  • Loading branch information
DanilaFe authored and riftEmber committed Jan 6, 2025
1 parent b55eac6 commit 5aa8815
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/lib/resolution/Resolver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5559,7 +5559,7 @@ static void noteLoopExprType(Resolver& rv, const IndexableLoop* loop, const std:

QualifiedType iterandType;
bool isZippered = false;
if (auto zip = loop->iterand()->toZip()) {
if (loop->iterand()->isZip()) {
isZippered = true;

std::vector<QualifiedType> iterandTypes;
Expand Down

0 comments on commit 5aa8815

Please sign in to comment.