| 20 | std::chrono::steady_clock::time_point timestamp; |
| 21 | |
| 22 | Task() = default; |
| 23 | Task (int i, const std::string& desc) |
| 24 | : id (i), description (desc), timestamp (std::chrono::steady_clock::now()) {} |
| 25 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected