aboutsummaryrefslogtreecommitdiff
path: root/src/vec.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/vec.h')
-rw-r--r--src/vec.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vec.h b/src/vec.h
index 37f29f6..90558ac 100644
--- a/src/vec.h
+++ b/src/vec.h
@@ -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;
}