7 #include <throwing/shared_ptr.hpp> 13 Foo(
int a,
int b) : n1(a), n2(b) {}
17 TEST_CASE(
"owner_before of shared_ptr",
"[shared_ptr][ordering]") {
18 Foo *ptr =
new Foo(1, 2);
19 throwing::shared_ptr<Foo> p1(ptr);
20 throwing::shared_ptr<
int> p2(p1, &p1->n1);
21 throwing::shared_ptr<
int> p3(p1, &p1->n2);
24 REQUIRE_FALSE(p2.owner_before(p3));
25 REQUIRE_FALSE(p3.owner_before(p2));
TEST_CASE("unique_ptr to array reset to convertible", "[unique_ptr][array][reset][conv.qual]")