From 6bfbcb849c37d85c1a4973641d90df87c551df14 Mon Sep 17 00:00:00 2001 From: natureh Date: Sat, 3 Mar 2012 10:52:08 +0100 Subject: [PATCH] Correction of an assertion in array2D.h which had became uneffective due to the last change. --- rtengine/array2D.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtengine/array2D.h b/rtengine/array2D.h index c79d4b5b5..e79482543 100644 --- a/rtengine/array2D.h +++ b/rtengine/array2D.h @@ -157,7 +157,7 @@ public: // use with indices T * operator[](int index) { - assert(index=0) && (index < y)); return ptr[index]; }