summaryrefslogtreecommitdiffstats
path: root/src/server/ArcImpl.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2017-03-19 10:36:11 +0100
committerDavid Robillard <d@drobilla.net>2017-03-20 02:58:56 +0100
commitefc0fe0a973db706d9409b345ad6fae585f4388c (patch)
tree6348b6bd17e358ed328b5c443966436fb36521e5 /src/server/ArcImpl.hpp
parentf46a3ec40a691a6892ad5536ca47de175a9c05b7 (diff)
downloadingen-efc0fe0a973db706d9409b345ad6fae585f4388c.tar.gz
ingen-efc0fe0a973db706d9409b345ad6fae585f4388c.tar.bz2
ingen-efc0fe0a973db706d9409b345ad6fae585f4388c.zip
Improve arc list efficiency
Diffstat (limited to 'src/server/ArcImpl.hpp')
-rw-r--r--src/server/ArcImpl.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/ArcImpl.hpp b/src/server/ArcImpl.hpp
index c796384a..40a6d179 100644
--- a/src/server/ArcImpl.hpp
+++ b/src/server/ArcImpl.hpp
@@ -49,11 +49,11 @@ class InputPort;
class ArcImpl
: private Raul::Noncopyable
, public Arc
- , public boost::intrusive::slist_base_hook<
- boost::intrusive::link_mode<boost::intrusive::auto_unlink> >
+ , public boost::intrusive::slist_base_hook<>
{
public:
ArcImpl(PortImpl* tail, PortImpl* head);
+ ~ArcImpl();
inline PortImpl* tail() const { return _tail; }
inline PortImpl* head() const { return _head; }