bison-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 07/22] c++: I'm tired of Flex's warnings


From: Akim Demaille
Subject: [PATCH 07/22] c++: I'm tired of Flex's warnings
Date: Sat, 23 Jan 2021 15:55:46 +0100

* doc/bison.texi: Disable another warning I'm tired to see.
New releases would be most welcome.
---
 doc/bison.texi | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/doc/bison.texi b/doc/bison.texi
index d38801dbe..4e9bb58b7 100644
--- a/doc/bison.texi
+++ b/doc/bison.texi
@@ -13555,6 +13555,14 @@ then the parser's to get the set of defined tokens.
 #  pragma GCC diagnostic ignored "-Wsign-conversion"
 # endif
 #endif
+
+// Flex 2.6.4, GCC 9
+// warning: useless cast to type 'int' [-Wuseless-cast]
+// 1361 |   YY_CURRENT_BUFFER_LVALUE->yy_buf_size = (int) (new_size - 2);
+//      |                                                 ^
+#if defined GCC_VERSION && 900 <= GCC_VERSION
+# pragma GCC diagnostic ignored "-Wuseless-cast"
+#endif
 %@}
 @end example
 @end ignore
-- 
2.30.0




reply via email to

[Prev in Thread] Current Thread [Next in Thread]