* Default clock class using std::chrono::system_clock as a backend. */
| 4162 | * Default clock class using std::chrono::system_clock as a backend. |
| 4163 | */ |
| 4164 | struct default_clock { |
| 4165 | /** |
| 4166 | * Gets the current system time |
| 4167 | * \return time_point of the host system |
| 4168 | */ |
| 4169 | date now() const { return date::clock::now(); } |
| 4170 | }; |
| 4171 | |
| 4172 | /** |
| 4173 | * Create a verifier using the default_clock. |
nothing calls this directly
no outgoing calls
no test coverage detected