summaryrefslogtreecommitdiffstats
path: root/src/server/Buffer.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/Buffer.hpp')
-rw-r--r--src/server/Buffer.hpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/server/Buffer.hpp b/src/server/Buffer.hpp
index 11436d9c..fcd6fe65 100644
--- a/src/server/Buffer.hpp
+++ b/src/server/Buffer.hpp
@@ -44,8 +44,6 @@ class Buffer : public boost::noncopyable, public Raul::Deletable
public:
Buffer(BufferFactory& bufs, LV2_URID type, uint32_t capacity);
- typedef boost::intrusive_ptr<Buffer> Ref;
-
virtual void clear();
virtual void resize(uint32_t size);
virtual void copy(Context& context, const Buffer* src);
@@ -94,9 +92,4 @@ private:
} // namespace Server
} // namespace Ingen
-namespace boost {
-inline void intrusive_ptr_add_ref(Ingen::Server::Buffer* b) { b->ref(); }
-inline void intrusive_ptr_release(Ingen::Server::Buffer* b) { b->deref(); }
-}
-
#endif // INGEN_ENGINE_BUFFER_HPP