Module: wine Branch: stable Commit: 87e7425820570449e8b88b4c5ea2cca85cf7fae2 URL: https://source.winehq.org/git/wine.git/?a=commit;h=87e7425820570449e8b88b4c5...
Author: Alexandre Julliard julliard@winehq.org Date: Tue Apr 23 11:47:22 2019 +0200
widl: Use %define parse.error verbose instead of %error-verbose.
The latter is deprecated and causes warnings.
Signed-off-by: Alexandre Julliard julliard@winehq.org (cherry picked from commit 5ea4d5971bff3430c29f1da31166b0a2565347ab) Signed-off-by: Michael Stefaniuc mstefani@winehq.org
---
tools/widl/parser.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/widl/parser.y b/tools/widl/parser.y index d979394182..2b5b297870 100644 --- a/tools/widl/parser.y +++ b/tools/widl/parser.y @@ -318,7 +318,7 @@ static typelib_t *current_typelib; %right '!' '~' CAST PPTR POS NEG ADDRESSOF tSIZEOF %left '.' MEMBERPTR '[' ']'
-%error-verbose +%define parse.error verbose
%%