From 5ae0c93b92008a9f2145bb809d8086ee4f9ee24b Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 14 May 2008 23:31:15 +0000 Subject: Fix clear patch command (ticket #18). Potential destruction race/leak fixes. More thorough thread assertions on graph object methods. git-svn-id: http://svn.drobilla.net/lad/raul@1207 a436a847-0d15-0410-975c-d299462d15a1 --- raul/List.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/raul/List.hpp b/raul/List.hpp index 1a8b426..5e56072 100644 --- a/raul/List.hpp +++ b/raul/List.hpp @@ -20,6 +20,7 @@ #include #include +#include #include #include #include @@ -34,7 +35,7 @@ namespace Raul { * only. See documentation for specific functions for specifics. */ template -class List : public Raul::Deletable +class List : public Raul::Deletable, public boost::noncopyable { public: -- cgit v1.2.1