| 60 | }; |
| 61 | |
| 62 | class BlockingAroundStepHook : public MarkingAroundStepHook { |
| 63 | public: |
| 64 | BlockingAroundStepHook(std::string id, std::stringstream* markersPtr) : |
| 65 | MarkingAroundStepHook(id, markersPtr){}; |
| 66 | |
| 67 | protected: |
| 68 | void doCall() override { |
| 69 | } |
| 70 | }; |
| 71 | |
| 72 | static const InvokeArgs NO_INVOKE_ARGS; |
| 73 |
nothing calls this directly
no outgoing calls
no test coverage detected