diff options
| author | Cremno <[email protected]> | 2013-08-09 03:30:08 +0200 |
|---|---|---|
| committer | Cremno <[email protected]> | 2013-08-09 03:30:08 +0200 |
| commit | 08911d1c823dd3bca631a99232ec1a29581c506f (patch) | |
| tree | 0236eb5e2e62548c5b2fba7949fd1aee95a7a84b /src | |
| parent | 30f86069de104d940401d462c52689b03863932a (diff) | |
| download | mruby-08911d1c823dd3bca631a99232ec1a29581c506f.tar.gz mruby-08911d1c823dd3bca631a99232ec1a29581c506f.zip | |
parse.y: fixed bison 3.0 warning
YACC src/parse.y -> build/host/src/y.tab.c
src/parse.y:936.1-12: warning: deprecated directive, use ‘%pure-parser’
[-Wdeprecated]
%pure_parser
Diffstat (limited to 'src')
| -rw-r--r-- | src/parse.y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse.y b/src/parse.y index 600cdb85c..c226a4e84 100644 --- a/src/parse.y +++ b/src/parse.y @@ -933,7 +933,7 @@ heredoc_end(parser_state *p) %} -%pure_parser +%pure-parser %parse-param {parser_state *p} %lex-param {parser_state *p} |
