Skip to content

Commit

Permalink
Moved check out of REQUIRE to see if it will compile
Browse files Browse the repository at this point in the history
  • Loading branch information
capo-at-the-5th-fret committed Nov 28, 2024
1 parent e0f2b26 commit 7ece19f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/tuple_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,9 @@ TEMPLATE_TEST_CASE("tuple_for_each", "[tuple]", tuple_test_type, pair_test_type,
++element;
});

REQUIRE(t == fixture.modified_expected);
const bool ok = (t == fixture.modified_expected);
REQUIRE(ok);
//REQUIRE(t == fixture.modified_expected);
}

SECTION("verify const correctness")
Expand Down

0 comments on commit 7ece19f

Please sign in to comment.