Skip to content

Commit

Permalink
Try to fix MSVC compilation (again).
Browse files Browse the repository at this point in the history
  • Loading branch information
kouchy committed Jul 26, 2024
1 parent ab1ed52 commit 91f9d7f
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 9 deletions.
1 change: 0 additions & 1 deletion include/Module/Stateful/Adaptor/Adaptor.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@ class Adaptor
inline Adaptor(const std::vector<size_t>& n_elmts,
const std::vector<std::type_index>& 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);
Expand Down
1 change: 0 additions & 1 deletion include/Module/Stateful/Set/Set.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
};
}
Expand Down
1 change: 0 additions & 1 deletion include/Module/Stateful/Stateful.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
6 changes: 0 additions & 6 deletions src/Module/Stateful/Stateful.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,3 @@ Stateful::Stateful()
: Module()
{
}

void
Stateful::deep_copy(const Stateful& m)
{
Module::deep_copy(m);
}

0 comments on commit 91f9d7f

Please sign in to comment.