From ed9a06123b39c4a46a64cc52a25a17ea32b9e5b7 Mon Sep 17 00:00:00 2001 From: Zach Laine Date: Sat, 12 Jul 2025 15:15:52 -0500 Subject: [PATCH] Comment out unused dont_assign param in second overload defined by BOOST_PARSER_DEFINE_IMPL. Fixes #237. --- include/boost/parser/parser.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/parser/parser.hpp b/include/boost/parser/parser.hpp index 17fbe7bb..e94757dd 100644 --- a/include/boost/parser/parser.hpp +++ b/include/boost/parser/parser.hpp @@ -6148,7 +6148,7 @@ namespace boost { namespace parser { SkipParser const & skip, \ boost::parser::detail::flags flags, \ bool & success, \ - bool & dont_assign, \ + bool & /*dont_assign*/, \ Attribute & retval) \ { \ auto const & parser = BOOST_PARSER_PP_CAT(rule_name_, _def); \