Add explicit cast when computing the available amount of system memory.

This commit is contained in:
Vladislav Sytchenko
2019-12-13 21:37:30 -05:00
rodzic b12c53cceb
commit 12634879e2
@@ -292,8 +292,8 @@ void memcpytest2_get_host_memory(size_t& free, size_t& total) {
MEMORYSTATUSEX status;
status.dwLength = sizeof(status);
GlobalMemoryStatusEx(&status);
free = (0.4 * status.ullAvailPhys);
total = (0.4 * status.ullTotalPhys);
free = static_cast<size_t>(0.4 * status.ullAvailPhys);
total = static_cast<size_t>(0.4 * status.ullTotalPhys);
}
#else
struct sysinfo memInfo;