Skip to content
Snippets Groups Projects
Commit 79552b87 authored by Fredrik Hübinette (Hubbe)'s avatar Fredrik Hübinette (Hubbe)
Browse files

modifiers should be before 'constant' not after!

Rev: src/language.yacc:1.34
parent 7022d8e9
No related branches found
No related tags found
No related merge requests found
......@@ -158,7 +158,7 @@
/* This is the grammar definition of Pike. */
#include "global.h"
RCSID("$Id: language.yacc,v 1.33 1997/03/17 03:04:39 hubbe Exp $");
RCSID("$Id: language.yacc,v 1.34 1997/04/07 03:29:08 hubbe Exp $");
#ifdef HAVE_MEMORY_H
#include <memory.h>
#endif
......@@ -454,7 +454,7 @@ constant_list: constant_name
| constant_list ',' constant_name
;
constant: F_CONSTANT modifiers constant_list ';'
constant: modifiers F_CONSTANT constant_list ';'
;
block_or_semi: block
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment