Alexandre Julliard : msi: Use %define api.pure instead of %pure-parser.

Alexandre Julliard julliard at winehq.org
Mon Apr 20 15:01:56 CDT 2020


Module: wine
Branch: oldstable
Commit: 3b50c56fd3189a0ae69e9a0404745d499241e18f
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=3b50c56fd3189a0ae69e9a0404745d499241e18f

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Mon Nov 25 14:37:05 2019 +0100

msi: Use %define api.pure instead of %pure-parser.

The latter is deprecated and causes warnings.

Signed-off-by: Alexandre Julliard <julliard at winehq.org>
(cherry picked from commit d977c55bb4b9c564f376c22b43c60c9be7dc782d)
Signed-off-by: Michael Stefaniuc <mstefani at winehq.org>

---

 dlls/msi/cond.y | 2 +-
 dlls/msi/sql.y  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/msi/cond.y b/dlls/msi/cond.y
index 2e252be5f4..8ba6916af1 100644
--- a/dlls/msi/cond.y
+++ b/dlls/msi/cond.y
@@ -117,7 +117,7 @@ static void value_free( struct value val )
 
 %lex-param { COND_input *info }
 %parse-param { COND_input *info }
-%pure-parser
+%define api.pure
 
 %union
 {
diff --git a/dlls/msi/sql.y b/dlls/msi/sql.y
index 2101c680eb..2cc280c9cf 100644
--- a/dlls/msi/sql.y
+++ b/dlls/msi/sql.y
@@ -62,7 +62,7 @@ static struct expr * EXPR_wildcard( void *info );
 
 %lex-param { SQL_input *info }
 %parse-param { SQL_input *info }
-%pure-parser
+%define api.pure
 
 %union
 {




More information about the wine-cvs mailing list