From 089c9244e6baa5ed42b1342b391c7c6aec521a2f Mon Sep 17 00:00:00 2001 From: Jakub Kuderski Date: Mon, 8 Nov 2021 17:01:57 -0500 Subject: [PATCH] Fix warning (signed/unsigned comparison). NFC. --- tools/cache_creator/unittests/cache_creator_tests.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/cache_creator/unittests/cache_creator_tests.cpp b/tools/cache_creator/unittests/cache_creator_tests.cpp index e8588052..d095c6e6 100644 --- a/tools/cache_creator/unittests/cache_creator_tests.cpp +++ b/tools/cache_creator/unittests/cache_creator_tests.cpp @@ -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); }