| 385 | |
| 386 | template<class Handler> |
| 387 | const char* |
| 388 | basic_parser<Handler>:: |
| 389 | suspend( |
| 390 | const char* p, |
| 391 | state st) |
| 392 | { |
| 393 | BOOST_ASSERT( p != sentinel() ); |
| 394 | end_ = p; |
| 395 | // suspend |
| 396 | reserve(); |
| 397 | st_.push_unchecked(st); |
| 398 | return sentinel(); |
| 399 | } |
| 400 | |
| 401 | template<class Handler> |
| 402 | const char* |
nothing calls this directly
no test coverage detected