| 6898 | typename Context, |
| 6899 | typename SkipParser> |
| 6900 | detail::nope call( |
| 6901 | Iter & first, |
| 6902 | Sentinel last, |
| 6903 | Context const & context, |
| 6904 | SkipParser const & skip, |
| 6905 | detail::flags flags, |
| 6906 | bool & success) const |
| 6907 | { |
| 6908 | #if BOOST_PARSER_DO_TRACE |
| 6909 | [[maybe_unused]] auto _ = detail::scoped_trace( |
| 6910 | *this, first, last, context, flags, detail::global_nope); |
| 6911 | #endif |
| 6912 | if (first != last) |
| 6913 | success = false; |
| 6914 | return {}; |
| 6915 | } |
| 6916 | |
| 6917 | template< |
| 6918 | typename Iter, |
nothing calls this directly
no test coverage detected