Commit cb782e13 authored by Dominik Charousset's avatar Dominik Charousset

Make sure not to hide overloads of the base type

parent 48a8d9de
......@@ -48,6 +48,8 @@ public:
// nop
}
using super::handle;
void handle(inbound_path*, downstream_msg::batch& x) override {
CAF_LOG_TRACE(CAF_ARG(x));
using vec_type = std::vector<input_type>;
......
......@@ -57,6 +57,8 @@ public:
// -- implementation of virtual functions ------------------------------------
using super::handle;
void handle(inbound_path*, downstream_msg::batch& x) override {
CAF_LOG_TRACE(CAF_ARG(x));
using vec_type = std::vector<input_type>;
......
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