| 36 | : m_comp_graph{cg}, m_profiler{m_comp_graph.get()} {} |
| 37 | |
| 38 | std::string _get_result() { |
| 39 | auto json = m_profiler.to_json_full(m_comp_graph->current_comp_seq()); |
| 40 | return json->to_string(); |
| 41 | } |
| 42 | }; |
| 43 | |
| 44 | struct WeakRendezvousArray : public std::vector<std::weak_ptr<RendezvousBase>>, |
no test coverage detected