Skip to content
Snippets Groups Projects
Commit acf5b0e4 authored by sof's avatar sof
Browse files

[project @ 1999-02-15 14:38:42 by sof]

Allow empty export lists again
parent 61882c44
No related merge requests found
......@@ -352,6 +352,7 @@ interface_pragma : /* empty */
;
maybeexports : /* empty */ { $$ = mknothing(); }
| OPAREN CPAREN { $$ = mknothing(); }
| OPAREN export_list CPAREN { $$ = mkjust($2); }
| OPAREN export_list COMMA CPAREN { $$ = mkjust($2); }
;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment