| 462 | } |
| 463 | |
| 464 | ServiceMethod::~ServiceMethod() |
| 465 | { |
| 466 | // invoke tracker to finish service |
| 467 | // note: Not expecting an exception from this code, but |
| 468 | // finishService() might conceivably throw an out-of-memory |
| 469 | // exception. |
| 470 | try { |
| 471 | tracker_->finishService(*this); |
| 472 | } catch (...) { |
| 473 | // don't throw |
| 474 | } |
| 475 | } |
| 476 | |
| 477 | uint64_t |
| 478 | ServiceMethod::step(const std::string &stepName) |
nothing calls this directly
no test coverage detected