Skip to content

Commit

Permalink
fixed a window's warning
Browse files Browse the repository at this point in the history
  • Loading branch information
guj committed Jun 9, 2021
1 parent 8f31fdb commit ea15339
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions source/adios2/toolkit/query/Query.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,7 @@ void QueryComposite::BlockIndexEvaluate(adios2::core::IO &io,
return;
}

// for (auto it = touched.begin(); it != touched.end(); it++)
for (int i = touched.size(); i >= 1; i--)
for (auto i = touched.size(); i >= 1; i--)
{
bool intersects = false;
for (auto b : curr)
Expand Down

0 comments on commit ea15339

Please sign in to comment.