From fb78847850edfa09033bf30e6d489467c9de476b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?= <grubba@grubba.org> Date: Wed, 17 Mar 2004 16:27:26 +0100 Subject: [PATCH] Using BEGIN_AGGREGATE_ARRAY() without a semi colon is now supported again. Rev: src/array.h:1.58 --- src/array.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/array.h b/src/array.h index 54536131d4..ba67be304f 100644 --- a/src/array.h +++ b/src/array.h @@ -2,7 +2,7 @@ || This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information. -|| $Id: array.h,v 1.57 2004/03/17 15:20:35 grubba Exp $ +|| $Id: array.h,v 1.58 2004/03/17 15:27:26 grubba Exp $ */ #ifndef ARRAY_H @@ -207,7 +207,7 @@ PMOD_EXPORT struct array *implode_array(struct array *a, struct array *b); struct svalue *base__; \ push_array(allocate_array_no_init(0, (estimated_size))); \ base__ = Pike_sp; \ - base__[-1].u.array->type_field = (BIT_MIXED | BIT_UNFINISHED) + base__[-1].u.array->type_field = (BIT_MIXED | BIT_UNFINISHED); #define DO_AGGREGATE_ARRAY(max_keep_on_stack) \ do { \ -- GitLab