diff options
author | David Robillard <d@drobilla.net> | 2019-12-08 21:11:49 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-12-08 21:11:49 +0100 |
commit | 7859da2568147cc06ea70992a1baed2ceaae619a (patch) | |
tree | e53f8f1b086afab4bbf4dbe0222239938091d90b /src/server/DuplexPort.hpp | |
parent | afffecae1c567bac1622d4f168ff7c3828ec3b51 (diff) | |
download | ingen-7859da2568147cc06ea70992a1baed2ceaae619a.tar.gz ingen-7859da2568147cc06ea70992a1baed2ceaae619a.tar.bz2 ingen-7859da2568147cc06ea70992a1baed2ceaae619a.zip |
Fix use of virtual functions in destructors
Diffstat (limited to 'src/server/DuplexPort.hpp')
-rw-r--r-- | src/server/DuplexPort.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/DuplexPort.hpp b/src/server/DuplexPort.hpp index 59b3cb51..6b3d0ae6 100644 --- a/src/server/DuplexPort.hpp +++ b/src/server/DuplexPort.hpp @@ -53,7 +53,7 @@ class RunContext; * * \ingroup engine */ -class INGEN_API DuplexPort +class INGEN_API DuplexPort final : public InputPort , public boost::intrusive::slist_base_hook<> // In GraphImpl { |