Commit 502a5c95 authored by Matthias Vallentin's avatar Matthias Vallentin

Silence unused variable warning

parent b8c209b0
...@@ -891,6 +891,7 @@ void scheduled_actor::erase_inbound_paths_later(const stream_manager* ptr, ...@@ -891,6 +891,7 @@ void scheduled_actor::erase_inbound_paths_later(const stream_manager* ptr,
void scheduled_actor::handle_upstream_msg(stream_slots slots, void scheduled_actor::handle_upstream_msg(stream_slots slots,
actor_addr& sender, actor_addr& sender,
upstream_msg::ack_open& x) { upstream_msg::ack_open& x) {
CAF_IGNORE_UNUSED(sender);
CAF_LOG_TRACE(CAF_ARG(slots) << CAF_ARG(sender) << CAF_ARG(x)); CAF_LOG_TRACE(CAF_ARG(slots) << CAF_ARG(sender) << CAF_ARG(x));
CAF_ASSERT(sender == x.rebind_to); CAF_ASSERT(sender == x.rebind_to);
// Get the manager for that stream, move it from `pending_managers_` to // Get the manager for that stream, move it from `pending_managers_` to
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment