| 40 | } |
| 41 | |
| 42 | size_t thread::hardware_concurrency() noexcept { |
| 43 | const auto hc = std::thread::hardware_concurrency(); |
| 44 | return (hc != 0) ? hc : consts::k_default_number_of_cores; |
| 45 | } |
| 46 | |
| 47 | #ifdef CRCPP_WIN_OS |
| 48 |
nothing calls this directly
no outgoing calls
no test coverage detected