| 427 | #include <windows.h> |
| 428 | |
| 429 | double current_time() |
| 430 | { |
| 431 | static bool init(false); |
| 432 | static LARGE_INTEGER freq; |
| 433 | |
| 434 | if (!init) { |
| 435 | QueryPerformanceFrequency(&freq); |
| 436 | init = true; |
| 437 | } |
| 438 | |
| 439 | LARGE_INTEGER count; |
| 440 | QueryPerformanceCounter(&count); |
| 441 | |
| 442 | return static_cast<double>(count.QuadPart) / freq.QuadPart; |
| 443 | } |
| 444 | |
| 445 | #else |
| 446 |
no outgoing calls
no test coverage detected