Skip to content

Commit

Permalink
Fix warning (signed/unsigned comparison). NFC.
Browse files Browse the repository at this point in the history
  • Loading branch information
kuhar authored and JaxLinAMD committed Nov 10, 2021
1 parent f1bf5fe commit 089c924
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/cache_creator/unittests/cache_creator_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,6 @@ amdpal.pipelines:

EXPECT_EQ(elfLlpcInfo.cacheHash.qwords[0], 17226562260713912943u);
EXPECT_EQ(elfLlpcInfo.cacheHash.qwords[1], 15513868906143827149u);
EXPECT_EQ(elfLlpcInfo.llpcVersion.getMajor(), 46);
EXPECT_EQ(elfLlpcInfo.llpcVersion.getMinor().getValue(), 1);
EXPECT_EQ(elfLlpcInfo.llpcVersion.getMajor(), 46u);
EXPECT_EQ(elfLlpcInfo.llpcVersion.getMinor().getValue(), 1u);
}

0 comments on commit 089c924

Please sign in to comment.