Commit e94734fd authored by Dominik Charousset's avatar Dominik Charousset

added 'override' identifiers

parent 81bff1a2
...@@ -117,14 +117,14 @@ class actor_facade<Ret(Args...)> : public actor { ...@@ -117,14 +117,14 @@ class actor_facade<Ret(Args...)> : public actor {
std::move(map_result)}; std::move(map_result)};
} }
void sync_enqueue(const actor_ptr& sender, message_id id, any_tuple msg) { void sync_enqueue(const actor_ptr& sender, message_id id, any_tuple msg) override {
CPPA_LOG_TRACE(""); CPPA_LOG_TRACE("");
typename util::il_indices<util::type_list<Args...>>::type indices; typename util::il_indices<util::type_list<Args...>>::type indices;
enqueue_impl(sender, msg, id, indices); enqueue_impl(sender, msg, id, indices);
} }
void enqueue(const actor_ptr& sender, any_tuple msg) { void enqueue(const actor_ptr& sender, any_tuple msg) override {
CPPA_LOG_TRACE(""); CPPA_LOG_TRACE("");
typename util::il_indices<util::type_list<Args...>>::type indices; typename util::il_indices<util::type_list<Args...>>::type indices;
enqueue_impl(sender, msg, message_id{}, indices); enqueue_impl(sender, msg, message_id{}, indices);
......
...@@ -60,7 +60,7 @@ class command_dummy : public command { ...@@ -60,7 +60,7 @@ class command_dummy : public command {
public: public:
void enqueue(command_queue_ptr) { } void enqueue(command_queue_ptr) override { }
}; };
template<typename T> template<typename T>
...@@ -88,7 +88,7 @@ class command_impl : public command { ...@@ -88,7 +88,7 @@ class command_impl : public command {
{ {
} }
void enqueue (command_queue_ptr queue) { void enqueue (command_queue_ptr queue) override {
CPPA_LOG_TRACE("command::enqueue()"); CPPA_LOG_TRACE("command::enqueue()");
this->ref(); this->ref();
cl_int err{0}; cl_int err{0};
......
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