throwing_ptr
Smart pointers that throw on dereference if null
Functions
shared_ptr_ordering.cpp File Reference

Go to the source code of this file.

Functions

 TEST_CASE ("owner_before of shared_ptr", "[shared_ptr][ordering]")
 

Function Documentation

◆ TEST_CASE()

TEST_CASE ( "owner_before of shared_ptr"  ,
""  [shared_ptr][ordering] 
)

Definition at line 17 of file shared_ptr_ordering.cpp.

17  {
18  Foo *ptr = new Foo(1, 2);
20  throwing::shared_ptr<int> p2(p1, &p1->n1);
21  throwing::shared_ptr<int> p3(p1, &p1->n2);
22  // REQUIRE( p2 < p3);
23  // REQUIRE_FALSE( p3 < p2);
24  REQUIRE_FALSE(p2.owner_before(p3));
25  REQUIRE_FALSE(p3.owner_before(p2));
26 }
Wrapper aroung std::shared_ptr that throws when a wrapped null pointer is dereferenced.
Definition: shared_ptr.hpp:63