Skip to content

Commit

Permalink
Fix build on GCC
Browse files Browse the repository at this point in the history
  • Loading branch information
Neverlord committed Mar 22, 2020
1 parent c2ccdc2 commit c86a723
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion include/broker/mixin/connector.hh
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public:
// remote peer via direct request messages.
cache_.fetch(
addr,
[=](communication_handle_type hdl) {
[=](communication_handle_type hdl) mutable {
if (auto i = ids_.find(hdl); i != ids_.end()) {
dref().start_peering(i->second, hdl, std::move(rp));
return;
Expand Down
2 changes: 2 additions & 0 deletions src/filter_type.cc
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#include "broker/filter_type.hh"

#include <algorithm>

namespace broker {

namespace {
Expand Down

0 comments on commit c86a723

Please sign in to comment.