Returns a literal code point parser that produces no attribute. */
| 7515 | |
| 7516 | /** Returns a literal code point parser that produces no attribute. */ |
| 7517 | inline constexpr auto lit(char c) noexcept { return omit[char_(c)]; } |
| 7518 | |
| 7519 | #if defined(__cpp_char8_t) || defined(BOOST_PARSER_DOXYGEN) |
| 7520 | /** Returns a literal code point parser that produces no attribute. */ |
no test coverage detected