diff options
author | David Robillard <d@drobilla.net> | 2012-05-11 19:47:45 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-05-11 19:47:45 +0000 |
commit | 393c5e2ffe3c28ece6768c8c7a2c09d4226af477 (patch) | |
tree | 122d112210b092bc378278a33d414021ab837869 /src/server/EdgeImpl.hpp | |
parent | 8ce8231c03b6ea32ef8d755503509aa72636aac7 (diff) | |
download | ingen-393c5e2ffe3c28ece6768c8c7a2c09d4226af477.tar.gz ingen-393c5e2ffe3c28ece6768c8c7a2c09d4226af477.tar.bz2 ingen-393c5e2ffe3c28ece6768c8c7a2c09d4226af477.zip |
Fix compilation with clang.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4358 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/server/EdgeImpl.hpp')
-rw-r--r-- | src/server/EdgeImpl.hpp | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/server/EdgeImpl.hpp b/src/server/EdgeImpl.hpp index 3d39e492..b93d65f6 100644 --- a/src/server/EdgeImpl.hpp +++ b/src/server/EdgeImpl.hpp @@ -20,7 +20,6 @@ #include <cstdlib> #include <boost/intrusive/slist.hpp> -#include <boost/intrusive_ptr.hpp> #include <boost/utility.hpp> #include "ingen/Edge.hpp" @@ -70,11 +69,11 @@ public: void queue(Context& context); - void get_sources(Context& context, - uint32_t voice, - boost::intrusive_ptr<Buffer>* srcs, - uint32_t max_num_srcs, - uint32_t& num_srcs); + void get_sources(Context& context, + uint32_t voice, + Buffer** srcs, + uint32_t max_num_srcs, + uint32_t& num_srcs); /** Get the buffer for a particular voice. * An Edge is smart - it knows the destination port requesting the |