From cb52e084d5d94a5bac4c8563e8d3c53bced2bcc5 Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Sat, 24 Jun 2017 13:50:57 +0200 Subject: [PATCH] [DEBUG] correct override missing --- zeus/Object.hpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/zeus/Object.hpp b/zeus/Object.hpp index 3c9a739..9ba1274 100644 --- a/zeus/Object.hpp +++ b/zeus/Object.hpp @@ -185,12 +185,7 @@ namespace zeus { */ return true; } - /** - * @brief Find and call the functionwith a specific name - * @param[in] _call Function name to call - * @param[in] _value Message to process. - */ - void callBinary(const std::string& _call, ememory::SharedPtr _value) { + void callBinary(const std::string& _call, ememory::SharedPtr _value) override { for (auto &it2 : m_listFunction) { if (it2 == nullptr) { continue;