Always include raw OS version number on Windows

This commit is contained in:
Nils Maier 2014-08-30 01:15:40 +02:00
parent bc5d9e5466
commit bd29fd2c30

View File

@ -333,6 +333,7 @@ std::string getOperatingSystemInfo()
#ifdef _WIN64
rv << " (x86_64)";
#endif // _WIN64
rv << " (" << ovi.dwMajorVersion << "." << ovi.dwMinorVersion << ")";
return rv.str();
#else //! _WIN32
#ifdef HAVE_SYS_UTSNAME_H