Skip to content

Commit

Permalink
Fix warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
highperformancecoder committed Mar 13, 2024
1 parent 4cbde8c commit e4f88d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plot.cc
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ namespace ecolab
if (y[i][j]<miny1) miny1=y[i][j];
if (y[i][j]>maxy1) maxy1=y[i][j];
}
else if (i>=penSide.size() || i<penSide.size() && penSide[i]==left)
else if (i>=penSide.size() || (i<penSide.size() && penSide[i]==left))
{
if (y[i][j]<miny) miny=y[i][j];
if (y[i][j]>maxy) maxy=y[i][j];
Expand Down

0 comments on commit e4f88d4

Please sign in to comment.