Commit aac42910 authored by Dominik Charousset's avatar Dominik Charousset

Fix inspect function of downstream_path

parent 3ccaad97
...@@ -57,9 +57,9 @@ public: ...@@ -57,9 +57,9 @@ public:
}; };
template <class Inspector> template <class Inspector>
typename Inspector::return_type inspect(Inspector& f, downstream_path& x) { typename Inspector::result_type inspect(Inspector& f, downstream_path& x) {
return f(meta::type_name("upstream_path"), x.next_batch_id, x.open_credit, return f(meta::type_name("downstream_path"), x.hdl, x.next_batch_id,
x.redeployable, x.unacknowledged_batches); x.open_credit, x.redeployable, x.unacknowledged_batches);
} }
} // namespace caf } // namespace caf
......
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