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

Go to the source code of this file.

Functions

 TEST_CASE ("hash operator of shared_ptr", "[shared_ptr][hash]")
 

Function Documentation

◆ TEST_CASE()

TEST_CASE ( "hash operator of shared_ptr"  ,
""  [shared_ptr][hash] 
)

Definition at line 9 of file shared_ptr_hash.cpp.

9  {
10  auto p = std::make_shared<int>(42);
12  REQUIRE(std::hash<throwing::shared_ptr<int>>()(tp) ==
13  std::hash<std::shared_ptr<int>>()(p));
14 }
Wrapper aroung std::shared_ptr that throws when a wrapped null pointer is dereferenced.
Definition: shared_ptr.hpp:63