aboutsummaryrefslogtreecommitdiff
path: root/gdb/vec.h
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/vec.h')
-rw-r--r--gdb/vec.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/vec.h b/gdb/vec.h
index e38ccb9..4bf2f47 100644
--- a/gdb/vec.h
+++ b/gdb/vec.h
@@ -390,7 +390,8 @@ extern void *vec_o_reserve (void *, int, size_t, size_t);
#define VEC_ASSERT_DECL ,const char *file_,unsigned line_
#define VEC_ASSERT_PASS ,file_,line_
#define vec_assert(expr, op) \
- ((void)((expr) ? 0 : (gdb_assert_fail (op, file_, line_, ASSERT_FUNCTION), 0)))
+ ((void)((expr) ? 0 : (gdb_assert_fail (op, file_, line_, \
+ ASSERT_FUNCTION), 0)))
#define VEC(T) VEC_##T
#define VEC_OP(T,OP) VEC_##T##_##OP