pike.git/
src/
language.yacc
Branch:
Tag:
Non-build tags
All tags
No tags
2000-03-30
2000-03-30 20:04:14 by Henrik Grubbström (Grubba) <grubba@grubba.org>
6deabda5df4bc6c126d311a7a8df818ac31359ea (
5
lines) (+
3
/-
2
)
[
Show
|
Annotate
]
Branch:
7.9
Changed a warning into an error.
Rev: src/language.yacc:1.176
188:
/* This is the grammar definition of Pike. */ #include "global.h"
-
RCSID("$Id: language.yacc,v 1.
175
2000/03/30
19
:
43
:
55
grubba Exp $");
+
RCSID("$Id: language.yacc,v 1.
176
2000/03/30
20
:
04
:
14
grubba Exp $");
#ifdef HAVE_MEMORY_H #include <memory.h> #endif
1247:
* FIXME: Should this be a syntax error or not? */ if (compiler_pass == 1) {
-
yywarning
("
Implicit
mixed
type.");
+
yyerror
("
Missing
type
before
.
.. .
");
} type_stack_reverse(); push_type(T_MANY);