1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 10:42:39 +01:00

[Support] Silence warning: comparison of integers of different signs: 'const int' and 'const unsigned long'

This commit is contained in:
Alexandre Ganea 2020-05-05 16:01:36 -04:00
parent b53c3d0951
commit fe787499fa

View File

@ -25,7 +25,7 @@ TEST(ProcessTest, GetProcessIdTest) {
const Process::Pid pid = Process::getProcessId();
#ifdef _WIN32
EXPECT_EQ(pid, ::GetCurrentProcessId());
EXPECT_EQ((DWORD)pid, ::GetCurrentProcessId());
#else
EXPECT_EQ(pid, ::getpid());
#endif