Module: wine Branch: oldstable Commit: 6d2df2328f745e20e09f0a5588be09246b9c7837 URL: https://source.winehq.org/git/wine.git/?a=commit;h=6d2df2328f745e20e09f0a558...
Author: Alexandre Julliard julliard@winehq.org Date: Mon Nov 25 14:37:47 2019 +0100
vbscript: Use %define api.pure instead of %pure-parser.
The latter is deprecated and causes warnings.
Signed-off-by: Alexandre Julliard julliard@winehq.org (cherry picked from commit 003a5f7c981fafe31c1b218df50259ba4131804b) Signed-off-by: Michael Stefaniuc mstefani@winehq.org
---
dlls/vbscript/parser.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/vbscript/parser.y b/dlls/vbscript/parser.y index 52c98fca59..704eeef83d 100644 --- a/dlls/vbscript/parser.y +++ b/dlls/vbscript/parser.y @@ -80,7 +80,7 @@ static statement_t *link_statements(statement_t*,statement_t*);
%lex-param { parser_ctx_t *ctx } %parse-param { parser_ctx_t *ctx } -%pure-parser +%define api.pure %start Program
%union {