From 02b2c2416009d5aaf3ea4b66dabb65616142b2a7 Mon Sep 17 00:00:00 2001 From: Dysrhythmic Date: Sat, 7 Sep 2024 22:32:33 -0500 Subject: [PATCH] fix int comparison --- libs/core/concurrency/tests/unit/tagged_ptr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/core/concurrency/tests/unit/tagged_ptr.cpp b/libs/core/concurrency/tests/unit/tagged_ptr.cpp index 24fc46049db3..626f1df92a91 100644 --- a/libs/core/concurrency/tests/unit/tagged_ptr.cpp +++ b/libs/core/concurrency/tests/unit/tagged_ptr.cpp @@ -44,7 +44,7 @@ void tagged_ptr_test() { tagged_ptr j(&a, max_tag); - HPX_TEST_EQ(j.get_next_tag(), 0); + HPX_TEST_EQ(j.get_next_tag(), 0UL); } {