| 303 | |
| 304 | template<class Handler> |
| 305 | const char* |
| 306 | basic_parser<Handler>:: |
| 307 | fail(const char* p) noexcept |
| 308 | { |
| 309 | BOOST_ASSERT( p != sentinel() ); |
| 310 | end_ = p; |
| 311 | return sentinel(); |
| 312 | } |
| 313 | |
| 314 | template<class Handler> |
| 315 | const char* |
nothing calls this directly
no outgoing calls
no test coverage detected