diff --git a/include/Module/Stateful/Adaptor/Adaptor.hpp b/include/Module/Stateful/Adaptor/Adaptor.hpp index d9fcbcf..e22538c 100644 --- a/include/Module/Stateful/Adaptor/Adaptor.hpp +++ b/include/Module/Stateful/Adaptor/Adaptor.hpp @@ -111,7 +111,6 @@ class Adaptor inline Adaptor(const std::vector& n_elmts, const std::vector& datatype, const size_t buffer_size); - using Stateful::deep_copy; void deep_copy(const Adaptor& m); inline bool is_full(const size_t id); inline bool is_empty(const size_t id); diff --git a/include/Module/Stateful/Set/Set.hpp b/include/Module/Stateful/Set/Set.hpp index 1402ed8..0a697d9 100644 --- a/include/Module/Stateful/Set/Set.hpp +++ b/include/Module/Stateful/Set/Set.hpp @@ -48,7 +48,6 @@ class Set : public Stateful virtual void set_n_frames(const size_t n_frames); protected: - using Stateful::deep_copy; void deep_copy(const Set& m); }; } diff --git a/include/Module/Stateful/Stateful.hpp b/include/Module/Stateful/Stateful.hpp index dcf8443..e588fe7 100644 --- a/include/Module/Stateful/Stateful.hpp +++ b/include/Module/Stateful/Stateful.hpp @@ -23,7 +23,6 @@ class Stateful : public Module protected: using Module::deep_copy; - void deep_copy(const Stateful& m); using Module::set_name; using Module::set_short_name; diff --git a/src/Module/Stateful/Stateful.cpp b/src/Module/Stateful/Stateful.cpp index 6afa6e1..7a2471b 100644 --- a/src/Module/Stateful/Stateful.cpp +++ b/src/Module/Stateful/Stateful.cpp @@ -7,9 +7,3 @@ Stateful::Stateful() : Module() { } - -void -Stateful::deep_copy(const Stateful& m) -{ - Module::deep_copy(m); -} \ No newline at end of file