]> granicus.if.org Git - postgis/commitdiff
added semicolumns at end of blocks
authorSandro Santilli <strk@keybit.net>
Fri, 4 Jun 2004 15:23:01 +0000 (15:23 +0000)
committerSandro Santilli <strk@keybit.net>
Fri, 4 Jun 2004 15:23:01 +0000 (15:23 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@594 b70326c6-7e19-0410-871a-916f4a2858ee

lwgeom/wktparse.y

index 0d6ba25fcf076960984f1ac743e04159b7c96b39..eec4961a1d4e00216619007a0f2d0779da5d72bd 100644 (file)
@@ -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(); } ;
 %%