summaryrefslogtreecommitdiffstats
path: root/raul/Table.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'raul/Table.hpp')
-rw-r--r--raul/Table.hpp5
1 files changed, 2 insertions, 3 deletions
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 <utility>
#include <vector>
-#include <boost/utility.hpp>
-
+#include "raul/Noncopyable.hpp"
#include "raul/SharedPtr.hpp"
//#define TABLE_SORT_DEBUG
@@ -38,7 +37,7 @@ namespace Raul {
* \ingroup raul
*/
template <typename K, typename T>
-class Table : public boost::noncopyable {
+class Table : public Noncopyable {
public:
Table<K, T>() : _entries() {}
Table<K, T>(size_t capacity) : _entries(capacity) {}