From 424055c04ec99b52363251a234debc8eeffcb3e2 Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Tue, 15 Oct 2013 12:00:20 +0200 Subject: [PATCH] fix iterator concept implementation --- DataStructures/DeallocatingVector.h | 1 - 1 file changed, 1 deletion(-) diff --git a/DataStructures/DeallocatingVector.h b/DataStructures/DeallocatingVector.h index c92964c0c..01e33fc67 100644 --- a/DataStructures/DeallocatingVector.h +++ b/DataStructures/DeallocatingVector.h @@ -108,7 +108,6 @@ public: } inline DeallocatingVectorIterator& operator++() { //prefix - if(DeallocateC) assert(false); ++mState.mIndex; return *this; }