From: Sandro Santilli Date: Fri, 4 Jun 2004 15:23:01 +0000 (+0000) Subject: added semicolumns at end of blocks X-Git-Tag: pgis_0_9_1~200 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3fac0be8bd87ce90efb0c63ddb9b4d64f93bca6c;p=postgis added semicolumns at end of blocks git-svn-id: http://svn.osgeo.org/postgis/trunk@594 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/lwgeom/wktparse.y b/lwgeom/wktparse.y index 0d6ba25fc..eec4961a1 100644 --- a/lwgeom/wktparse.y +++ b/lwgeom/wktparse.y @@ -107,13 +107,13 @@ geometrycollection_int : geometry_int | geometrycollection_int COMMA geometry_ a_point : point_2d | point_3d | point_4d ; -point_2d : VALUE VALUE {alloc_point_2d($1,$2) }; +point_2d : VALUE VALUE {alloc_point_2d($1,$2); }; -point_3d : VALUE VALUE VALUE {alloc_point_3d($1,$2,$3) }; +point_3d : VALUE VALUE VALUE {alloc_point_3d($1,$2,$3); }; -point_4d : VALUE VALUE VALUE VALUE {alloc_point_4d($1,$2,$3,$4) }; +point_4d : VALUE VALUE VALUE VALUE {alloc_point_4d($1,$2,$3,$4); }; -empty : EMPTY {alloc_empty() } ; +empty : EMPTY {alloc_empty(); } ; %%