@@ -13,12 +13,10 @@ * file. */ #include "config.h" -#include - #import "OFMapTableDictionary.h" #import "OFArray.h" #import "OFMapTable+Private.h" #import "OFMapTable.h" #import "OFMutableMapTableDictionary.h" @@ -344,11 +342,11 @@ size_t i; i = 0; enumerator = [_mapTable keyEnumerator]; while ((keyPtr = [enumerator nextObject]) != NULL) { - assert(i < count); + OFAssert(i < count); keys[i++] = (id)*keyPtr; } objc_autoreleasePoolPop(pool); @@ -377,11 +375,11 @@ size_t i; i = 0; enumerator = [_mapTable objectEnumerator]; while ((objectPtr = [enumerator nextObject]) != NULL) { - assert(i < count); + OFAssert(i < count); objects[i++] = (id)*objectPtr; } objc_autoreleasePoolPop(pool);