| 4840 | typename Context, |
| 4841 | typename SkipParser> |
| 4842 | detail::nope call( |
| 4843 | Iter & first, |
| 4844 | Sentinel last, |
| 4845 | Context const & context, |
| 4846 | SkipParser const & skip, |
| 4847 | detail::flags flags, |
| 4848 | bool & success) const |
| 4849 | { |
| 4850 | #if BOOST_PARSER_DO_TRACE |
| 4851 | [[maybe_unused]] auto _ = detail::scoped_trace( |
| 4852 | *this, first, last, context, flags, detail::global_nope); |
| 4853 | #endif |
| 4854 | |
| 4855 | parser_.call( |
| 4856 | first, |
| 4857 | last, |
| 4858 | context, |
| 4859 | skip, |
| 4860 | detail::disable_attrs(flags), |
| 4861 | success); |
| 4862 | return {}; |
| 4863 | } |
| 4864 | |
| 4865 | template< |
| 4866 | typename Iter, |
nothing calls this directly
no test coverage detected