changeset 25644:bee8d60413f3

avoid bison warning about deprecated syntax * oct-parse.yy: Use "%define api.prefix both" intead of "%define api.prefix {both}".
author John W. Eaton <jwe@octave.org>
date Thu, 19 Jul 2018 13:40:47 -0400
parents afb5288a25ad
children 0214d9dabba2
files libinterp/parse-tree/oct-parse.yy
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/parse-tree/oct-parse.yy	Thu Jul 19 13:28:51 2018 -0400
+++ b/libinterp/parse-tree/oct-parse.yy	Thu Jul 19 13:40:47 2018 -0400
@@ -128,7 +128,7 @@
 %define api.pure
 // No spaces inside the braces for the prefix and push-pull definitions!
 %define api.prefix {octave_}
-%define api.push-pull {both}
+%define api.push-pull both
 %parse-param { octave::base_parser& parser }
 %lex-param { void *lexer.scanner }