Skip to content

Commit

Permalink
Fix compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jdtournier authored Nov 30, 2019
1 parent 3894147 commit b774c82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testing/cmd/testing_unit_tests_shuffle.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ void run ()
block_indices << BLOCK_INDICES;
assert (block_indices.size() == ROWS);
vector<std::set<size_t>> blocks (block_indices.maxCoeff()+1);
for (size_t i = 0; i != block_indices.size(); ++i)
for (ssize_t i = 0; i != block_indices.size(); ++i)
blocks[block_indices[i]].insert (i);

auto test = [&] (const bool result, const std::string msg)
Expand Down

0 comments on commit b774c82

Please sign in to comment.