From eda9214f81b32d9606f425e3777616e8cfc0a44f Mon Sep 17 00:00:00 2001 From: sapier Date: Sun, 6 Apr 2014 15:12:04 +0200 Subject: Bunch of small fixes (coding style, very unlikely errors, warning messages) --- src/util/pointer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/util/pointer.h') diff --git a/src/util/pointer.h b/src/util/pointer.h index ba43b7844..7922a9b39 100644 --- a/src/util/pointer.h +++ b/src/util/pointer.h @@ -258,7 +258,7 @@ public: } T & operator[](unsigned int i) const { - //assert(i < m_size) + assert(i < m_size); return data[i]; } T * operator*() const -- cgit v1.2.3