| 1468 | int write_fd; |
| 1469 | |
| 1470 | TaskHandler() : read_fd(-1), write_fd(-1) { |
| 1471 | // do nothing |
| 1472 | } |
| 1473 | |
| 1474 | explicit TaskHandler(TaskT const& task) |
| 1475 | : read_fd(task.read_fd), write_fd(task.write_fd) { |
nothing calls this directly
no outgoing calls
no test coverage detected