| 88 | } |
| 89 | |
| 90 | std::string GetProcessIdString() { |
| 91 | #ifdef _WIN32 |
| 92 | return std::to_string(_getpid()); |
| 93 | #else |
| 94 | return std::to_string(getpid()); |
| 95 | #endif |
| 96 | } |
| 97 | |
| 98 | std::string GetBaseNameWithoutExtension(const std::string& path) { |
| 99 | const std::string::size_type slash_pos = path.find_last_of("/\\"); |
no outgoing calls
no test coverage detected