| 53 | vector<thread> _handler; |
| 54 | |
| 55 | void runInThread(int id) |
| 56 | { |
| 57 | std::this_thread::sleep_for(std::chrono::seconds(1)); |
| 58 | cout << "call runInThread! id:" << id << endl; |
| 59 | } |
| 60 | }; |
| 61 | |
| 62 | int main() |
nothing calls this directly
no outgoing calls
no test coverage detected