diff options
Diffstat (limited to 'src/server/mix.hpp')
-rw-r--r-- | src/server/mix.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/server/mix.hpp b/src/server/mix.hpp index 4b062ed9..79b02477 100644 --- a/src/server/mix.hpp +++ b/src/server/mix.hpp @@ -18,6 +18,7 @@ #ifndef INGEN_ENGINE_MIX_HPP #define INGEN_ENGINE_MIX_HPP +#include <boost/intrusive_ptr.hpp> #include "raul/log.hpp" #include "ingen/PortType.hpp" #include "Buffer.hpp" @@ -29,7 +30,7 @@ namespace Ingen { namespace Server { inline void -mix(Context& context, Buffer* dst, const IntrusivePtr<Buffer>* srcs, uint32_t num_srcs) +mix(Context& context, Buffer* dst, const boost::intrusive_ptr<Buffer>* srcs, uint32_t num_srcs) { using Ingen::PortType; switch (dst->type().symbol()) { |