summaryrefslogtreecommitdiffstats
path: root/src/server/LV2Node.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-05-11 19:47:45 +0000
committerDavid Robillard <d@drobilla.net>2012-05-11 19:47:45 +0000
commit393c5e2ffe3c28ece6768c8c7a2c09d4226af477 (patch)
tree122d112210b092bc378278a33d414021ab837869 /src/server/LV2Node.hpp
parent8ce8231c03b6ea32ef8d755503509aa72636aac7 (diff)
downloadingen-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/LV2Node.hpp')
-rw-r--r--src/server/LV2Node.hpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/server/LV2Node.hpp b/src/server/LV2Node.hpp
index 5ba2afaf..6309acf2 100644
--- a/src/server/LV2Node.hpp
+++ b/src/server/LV2Node.hpp
@@ -19,11 +19,10 @@
#include <string>
-#include <boost/intrusive_ptr.hpp>
-
#include "lilv/lilv.h"
#include "lv2/lv2plug.in/ns/ext/worker/worker.h"
+#include "BufferRef.hpp"
#include "NodeImpl.hpp"
#include "ingen/shared/LV2Features.hpp"
#include "types.hpp"
@@ -60,8 +59,10 @@ public:
void process(ProcessContext& context);
- void set_port_buffer(uint32_t voice, uint32_t port_num,
- boost::intrusive_ptr<Buffer> buf, SampleCount offset);
+ void set_port_buffer(uint32_t voice,
+ uint32_t port_num,
+ BufferRef buf,
+ SampleCount offset);
protected:
inline LilvInstance* instance(uint32_t voice) {