summaryrefslogtreecommitdiffstats
path: root/src/server/Buffer.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/Buffer.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/Buffer.hpp')
-rw-r--r--src/server/Buffer.hpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/server/Buffer.hpp b/src/server/Buffer.hpp
index fcd6fe65..f0a84910 100644
--- a/src/server/Buffer.hpp
+++ b/src/server/Buffer.hpp
@@ -20,7 +20,6 @@
#include <cassert>
#include <cstddef>
-#include <boost/intrusive_ptr.hpp>
#include <boost/utility.hpp>
#include "lv2/lv2plug.in/ns/ext/atom/atom.h"
@@ -86,7 +85,7 @@ private:
void recycle();
Buffer* _next; ///< Intrusive linked list for BufferFactory
- Raul::AtomicInt _refs; ///< Intrusive reference count for intrusive_ptr
+ Raul::AtomicInt _refs; ///< Intrusive reference count
};
} // namespace Server