| 242 | |
| 243 | template<class Handler> |
| 244 | const char* |
| 245 | basic_parser<Handler>:: |
| 246 | sentinel() |
| 247 | { |
| 248 | // the "+1" ensures that the returned pointer is unique even if |
| 249 | // the given input buffer borders on this object |
| 250 | return reinterpret_cast< |
| 251 | const char*>(this) + 1; |
| 252 | } |
| 253 | |
| 254 | template<class Handler> |
| 255 | bool |
nothing calls this directly
no outgoing calls
no test coverage detected