summaryrefslogtreecommitdiffstats
path: root/raul/List.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'raul/List.hpp')
-rw-r--r--raul/List.hpp3
1 files changed, 2 insertions, 1 deletions
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 <cstddef>
#include <cassert>
+#include <boost/utility.hpp>
#include <raul/Deletable.hpp>
#include <raul/AtomicPtr.hpp>
#include <raul/AtomicInt.hpp>
@@ -34,7 +35,7 @@ namespace Raul {
* only. See documentation for specific functions for specifics.
*/
template <typename T>
-class List : public Raul::Deletable
+class List : public Raul::Deletable, public boost::noncopyable
{
public: