Skip to content

Commit

Permalink
Revert "[macOS] Comparison between exactly same types"
Browse files Browse the repository at this point in the history
This reverts commit 76d847a.

Signed-off-by: Shreyas Atre <[email protected]>
  • Loading branch information
SAtacker committed Nov 25, 2024
1 parent 1682407 commit 6ff0c9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/core/concurrency/tests/unit/tagged_ptr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ void tagged_ptr_test()
i = j;

HPX_TEST_EQ(i.get_ptr(), &b);
HPX_TEST_EQ(i.get_tag(), 1UL);
HPX_TEST_EQ(i.get_tag(), 1);
}

{
Expand All @@ -43,7 +43,7 @@ void tagged_ptr_test()

{
tagged_ptr<int> j(&a, max_tag);
HPX_TEST_EQ(j.get_next_tag(), 0UL);
HPX_TEST_EQ(j.get_next_tag(), 0);
}

{
Expand Down

0 comments on commit 6ff0c9d

Please sign in to comment.