| 293 | }; |
| 294 | |
| 295 | std::size_t time() |
| 296 | { |
| 297 | static std::chrono::time_point<std::chrono::high_resolution_clock> timer(std::chrono::high_resolution_clock::now()); |
| 298 | return std::chrono::duration_cast<std::chrono::milliseconds>( |
| 299 | std::chrono::high_resolution_clock::now() - timer) |
| 300 | .count(); |
| 301 | } |
| 302 | |
| 303 | std::size_t breakpoint_recorder::m_id = 0; |
| 304 |