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

Go to the source code of this file.

Functions

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

Function Documentation

◆ TEST_CASE()

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

Definition at line 9 of file unique_ptr_hash.cpp.

9  {
10  int *p = new int;
11  auto tp = throwing::unique_ptr<int>(p);
12  REQUIRE(std::hash<throwing::unique_ptr<int>>()(tp) ==
13  std::hash<int *>()(p));
14 }
unique_ptr that manages a single object
Definition: unique_ptr.hpp:38