Fix comparison signed unsigned warning.

pull/4537/head
Kim Kulling 2022-05-21 09:47:54 +02:00
parent 4d451fe437
commit e5a2b00719
1 changed files with 1 additions and 1 deletions

View File

@ -52,5 +52,5 @@ class utHash : public ::testing::Test {
TEST_F( utHash, SuperFastHashTest ) {
const char *Data = "-21416115v";
auto result = SuperFastHash(Data, 10);
EXPECT_NE(0, result);
EXPECT_NE(0u, result);
}