| 1733 | } |
| 1734 | |
| 1735 | String Utility::GetPlatformKernel() |
| 1736 | { |
| 1737 | #ifdef _WIN32 |
| 1738 | return "Windows"; |
| 1739 | #else /* _WIN32 */ |
| 1740 | return UnameHelper('s'); |
| 1741 | #endif /* _WIN32 */ |
| 1742 | } |
| 1743 | |
| 1744 | String Utility::GetPlatformKernelVersion() |
| 1745 | { |
nothing calls this directly
no test coverage detected