Skip to content

Commit

Permalink
CI Fix: std::move
Browse files Browse the repository at this point in the history
  • Loading branch information
franzpoeschel committed Feb 6, 2024
1 parent 41bb779 commit cc87760
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ChunkInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ namespace chunk_assignment
Assignment &sinkChunks = res.assigned;
{
ChunkTable leftover;
for (auto const &chunk : sourceChunks)
for (auto &chunk : sourceChunks)
{
auto it = in.find(chunk.sourceID);
if (it == in.end())
Expand Down

0 comments on commit cc87760

Please sign in to comment.