1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

Use explicitly unsigned zero to prevent from a warning

This commit is contained in:
Serge Pavlov 2020-06-17 15:34:00 +07:00
parent d7d55650fd
commit 95f949cc97

View File

@ -357,7 +357,7 @@ TEST_F(ProgramEnvTest, TestExecuteAndWaitStatistics) {
&ExecutionFailed, &ProcStat);
ASSERT_EQ(0, RetCode);
ASSERT_TRUE(ProcStat);
ASSERT_GT(ProcStat->PeakMemory, 0);
ASSERT_GT(ProcStat->PeakMemory, 0U);
ASSERT_GE(ProcStat->UserTime, std::chrono::microseconds(0));
ASSERT_GE(ProcStat->TotalTime, ProcStat->UserTime);
}