Skip to content

Commit

Permalink
silence compiler warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
felixguendling committed Mar 14, 2024
1 parent abbf285 commit 7812f7e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .pkg
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
[concurrentqueue]
[email protected]:motis-project/concurrentqueue.git
branch=master
commit=ef2227ada6f76cd65e517b7a6e902964443c0ffc
commit=54fdce755d3e52c785d6d9d7d91c94615495868c
[conf]
[email protected]:motis-project/conf.git
branch=master
Expand All @@ -21,7 +21,7 @@
[geo]
[email protected]:motis-project/geo.git
branch=master
commit=5bf5179faf5f21d543866cca85fe090fe3664cc5
commit=b74f5797c7f1b693b2e8d28a14c0e7836456ff7e
[lmdb]
[email protected]:motis-project/lmdb.git
branch=master
Expand Down
4 changes: 2 additions & 2 deletions include/tiles/util_parallel.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ struct in_order_queue {
}

// process ready items
for (auto& t : ready) {
fn(std::move(t.second));
for (auto& x : ready) {
fn(std::move(x.second));
}

{ // increment next-expected
Expand Down

0 comments on commit 7812f7e

Please sign in to comment.