From 2697eebffd02361623c594eacfb48edf10bb003a Mon Sep 17 00:00:00 2001 From: Zach Laine Date: Fri, 23 Feb 2024 20:53:56 -0600 Subject: [PATCH] Remove crufty claim in the reference docs for BOOST_PARSER_DEFINE_RULES that it is only conditionally available. Fixes #100. --- include/boost/parser/parser.hpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/boost/parser/parser.hpp b/include/boost/parser/parser.hpp index 95f6b198..1a7c2869 100644 --- a/include/boost/parser/parser.hpp +++ b/include/boost/parser/parser.hpp @@ -5364,8 +5364,7 @@ namespace boost { namespace parser { /** For each given token `t`, defines a pair of `parse_rule()` overloads, used internally within Boost.Parser. Each such pair implements the - parsing behavior rule `t`, using the parser `t_def`. This macro is - only available when the Boost.Preprocessor headers are available. */ + parsing behavior rule `t`, using the parser `t_def`. */ #define BOOST_PARSER_DEFINE_RULES(...) \ BOOST_PARSER_PP_FOR_EACH(BOOST_PARSER_DEFINE_IMPL, _, __VA_ARGS__)