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

Alexandre Julliard julliard at winehq.org
Mon Nov 25 16:41:55 CST 2019


Module: wine
Branch: master
Commit: d977c55bb4b9c564f376c22b43c60c9be7dc782d
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=d977c55bb4b9c564f376c22b43c60c9be7dc782d

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>

---

 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 2183d1edf4..1a79de31bf 100644
--- a/dlls/msi/cond.y
+++ b/dlls/msi/cond.y
@@ -114,7 +114,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 50092abacf..8ffbcd4de5 100644
--- a/dlls/msi/sql.y
+++ b/dlls/msi/sql.y
@@ -58,7 +58,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