Skip to content

Commit

Permalink
Fix in print_tiled_loop method
Browse files Browse the repository at this point in the history
  • Loading branch information
sunethekanayake committed Apr 22, 2020
1 parent 1475497 commit 127155a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sparsetiling/src/inspector.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,7 @@ static void print_tiled_loop (tile_list* tiles, loop_t* loop, int verbosityTiles
int range = MIN(tileLoopSize, verbosityTiles);
cout << " " << tileInfo << " " << i << " | " << tiles->at(i)->color << " | "
<< tileLoopSize << " : {";
if (tileLoopSize == 0) {
if (tileLoopSize <= 0) {
cout << "No iterations}" << endl;
continue;
}
Expand Down

0 comments on commit 127155a

Please sign in to comment.