summaryrefslogtreecommitdiffstats
path: root/raul/Table.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'raul/Table.hpp')
-rw-r--r--raul/Table.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/raul/Table.hpp b/raul/Table.hpp
index 4ab449c..9fd672a 100644
--- a/raul/Table.hpp
+++ b/raul/Table.hpp
@@ -21,6 +21,8 @@
#include <vector>
#include <algorithm>
+//#define TABLE_SORT_DEBUG
+
namespace Raul {
@@ -98,7 +100,7 @@ public:
iterator end() { return iterator(*this, size()); }
private:
-#ifndef NDEBUG
+#ifdef TABLE_SORT_DEBUG
bool is_sorted() const;
#endif