| 11 | } |
| 12 | |
| 13 | double Timer::get_duration() const { |
| 14 | return static_cast<double>(std::clock() - this->start_time) / static_cast<double>(CLOCKS_PER_SEC); |
| 15 | } |
| 16 | |
| 17 | char* Timer::get_current_date() { |
| 18 | const auto current_time = std::chrono::system_clock::now(); |
no outgoing calls
no test coverage detected