1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-04 11:23:46 +00:00
Kirill Ponomarev 9c461e9fdd - Fix build on -current
o Remove extra token pasting operators after ::'s.
  o Add missing ; in yacc files.

PR:		56187
Submitted by:	Michael Edenfield <kutulu@kutulu.org>
2003-08-30 17:37:21 +00:00

20 lines
424 B
Plaintext

--- fe/newcorba/parser.yy.orig Sat Aug 30 00:52:20 2003
+++ fe/newcorba/parser.yy Sat Aug 30 00:55:05 2003
@@ -305,6 +305,8 @@
ParseError("expecting identifier");
$$ = 0;
}
+ ;
+
scoped_name : ID {
$$ = FindLocalName($1);
}
@@ -1058,6 +1060,7 @@
ParseError("invalid type");
$$ = MakeAoiType(kSLONG);
}
+ ;
param_type_spec : base_type_spec {$$ = $1;}
| string_type {$$ = $1;}