Skip to content

Commit

Permalink
fix comparison of diff types
Browse files Browse the repository at this point in the history
  • Loading branch information
Dysrhythmic committed Sep 6, 2024
1 parent 5939420 commit 1356c74
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libs/core/concurrency/tests/unit/tagged_ptr.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Copyright (C) 2011 Tim Blechmann
// Copyright (c) 2022 Hartmut Kaiser
// Copyright (c) 2024 Jacob Tucker
//
// SPDX-License-Identifier: BSL-1.0
// Distributed under the Boost Software License, Version 1.0. (See accompanying
Expand All @@ -25,7 +26,7 @@ void tagged_ptr_test()
i = j;

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

{
Expand Down

0 comments on commit 1356c74

Please sign in to comment.