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:
parent
b53c3d0951
commit
fe787499fa
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user