Skip to content

Commit

Permalink
checks
Browse files Browse the repository at this point in the history
  • Loading branch information
oktonion committed Sep 15, 2024
1 parent 68e77e2 commit 6bc6e7d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/delegate0_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,8 @@ TEST_CASE("Testing cpp delegate 0") {

d0_other = delegate<void>(&t, &Test::call);


REQUIRE_FALSE(&Test::call == &Test::call2);
void(Test::*Test_call)() = &Test::call;
void(Test::*Test_call2)() = &Test::call2;
REQUIRE_FALSE(Test_call == Test_call2);
Expand Down

0 comments on commit 6bc6e7d

Please sign in to comment.