Returns a character parser equivalent to `char_(c)`. */
| 9926 | |
| 9927 | /** Returns a character parser equivalent to `char_(c)`. */ |
| 9928 | constexpr auto operator""_p(char c) { return char_(c); } |
| 9929 | #if defined(__cpp_char8_t) || defined(BOOST_PARSER_DOXYGEN) |
| 9930 | /** Returns a character parser equivalent to `char_(c)`. */ |
| 9931 | constexpr auto operator""_p(char8_t c) { return char_(c); } |