Module: wine Branch: oldstable Commit: 39d3c93162ca00317af3bd713119c8ef352e99d4 URL: https://source.winehq.org/git/wine.git/?a=commit;h=39d3c93162ca00317af3bd713...
Author: Alexandre Julliard julliard@winehq.org Date: Mon Nov 25 14:37:54 2019 +0100
wbemprox: 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 7026b59b48abecfe51444df491ff40b33f53d3d5) Signed-off-by: Michael Stefaniuc mstefani@winehq.org
---
dlls/wbemprox/wql.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/wbemprox/wql.y b/dlls/wbemprox/wql.y index 75ce5b0621..988feb2db1 100644 --- a/dlls/wbemprox/wql.y +++ b/dlls/wbemprox/wql.y @@ -188,7 +188,7 @@ static int wql_lex( void *val, struct parser *parser ); %lex-param { struct parser *ctx } %parse-param { struct parser *ctx } %define parse.error verbose -%pure-parser +%define api.pure
%union {