ports/devel/flick/files/patch-ai
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

19 lines
424 B
Text

--- 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;}