diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2020-04-27 18:52:43 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2020-04-27 18:52:43 +0900 |
| commit | 8dee2e3984c3de34586968c2571750a4b2094b39 (patch) | |
| tree | 81da75e3f58d9ff20055d4c34425d0ca09bc14d5 | |
| parent | 8e86e64d7843ad5741384e98ab5358d9414a558d (diff) | |
| download | mruby-8dee2e3984c3de34586968c2571750a4b2094b39.tar.gz mruby-8dee2e3984c3de34586968c2571750a4b2094b39.zip | |
Updating `parse.y for recent `bison` (retry).
| -rw-r--r-- | .travis.yml | 11 | ||||
| -rw-r--r-- | mrbgems/mruby-compiler/core/parse.y | 2 |
2 files changed, 4 insertions, 9 deletions
diff --git a/.travis.yml b/.travis.yml index acf1fc7f6..2d83cbcdf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,14 +6,9 @@ matrix: - os: linux sudo: false - os: osx - osx_image: xcode10.3 - addons: - homebrew: - update: true - packages: - - flex - - gperf - - bison + before_install: + - brew install bison + - export PATH="/usr/local/opt/bison/bin:$PATH" env: - MRUBY_CONFIG=travis_config.rb diff --git a/mrbgems/mruby-compiler/core/parse.y b/mrbgems/mruby-compiler/core/parse.y index c5d1e61b1..7ca2e088f 100644 --- a/mrbgems/mruby-compiler/core/parse.y +++ b/mrbgems/mruby-compiler/core/parse.y @@ -1330,7 +1330,7 @@ heredoc_end(parser_state *p) %} -%pure-parser +%define api.pure %parse-param {parser_state *p} %lex-param {parser_state *p} |
