summaryrefslogtreecommitdiffstats
path: root/src/server/EnginePort.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/EnginePort.hpp
parentf46a3ec40a691a6892ad5536ca47de175a9c05b7 (diff)
downloadingen-efc0fe0a973db706d9409b345ad6fae585f4388c.tar.gz
ingen-efc0fe0a973db706d9409b345ad6fae585f4388c.tar.bz2
ingen-efc0fe0a973db706d9409b345ad6fae585f4388c.zip
Improve arc list efficiency
Diffstat (limited to 'src/server/EnginePort.hpp')
-rw-r--r--src/server/EnginePort.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/EnginePort.hpp b/src/server/EnginePort.hpp
index ee00d4ed..c657f75a 100644
--- a/src/server/EnginePort.hpp
+++ b/src/server/EnginePort.hpp
@@ -20,7 +20,7 @@
#include "raul/Deletable.hpp"
#include "raul/Noncopyable.hpp"
-#include <boost/intrusive/list.hpp>
+#include <boost/intrusive/slist.hpp>
#include "DuplexPort.hpp"
@@ -33,7 +33,7 @@ namespace Server {
*/
class EnginePort : public Raul::Noncopyable
, public Raul::Deletable
- , public boost::intrusive::list_base_hook<>
+ , public boost::intrusive::slist_base_hook<>
{
public:
explicit EnginePort(DuplexPort* port)