From bed446e569b815ebb81e8866579a8abcda77358a Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 20 May 2011 00:33:22 +0000 Subject: Make boost dependency optional. Note Raul compiled with --cpp0x is NOT compatible with Raul compiled without it. git-svn-id: http://svn.drobilla.net/lad/trunk/raul@3289 a436a847-0d15-0410-975c-d299462d15a1 --- raul/Table.hpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'raul/Table.hpp') diff --git a/raul/Table.hpp b/raul/Table.hpp index 55b42f8..dd5c1d7 100644 --- a/raul/Table.hpp +++ b/raul/Table.hpp @@ -22,8 +22,7 @@ #include #include -#include - +#include "raul/Noncopyable.hpp" #include "raul/SharedPtr.hpp" //#define TABLE_SORT_DEBUG @@ -38,7 +37,7 @@ namespace Raul { * \ingroup raul */ template -class Table : public boost::noncopyable { +class Table : public Noncopyable { public: Table() : _entries() {} Table(size_t capacity) : _entries(capacity) {} -- cgit v1.2.1