diff options
Diffstat (limited to 'src/vec.h')
-rw-r--r-- | src/vec.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -107,7 +107,7 @@ static inline void VEC(reserve)(struct VEC_STRUCT *v, size_t n) static inline void VEC(shrink)(struct VEC_STRUCT *v, size_t n) { - assert(v->n >= n); + /* assert(v->n >= n); */ v->n = n; } |