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

Go to the source code of this file.

Functions

 TEST_CASE ("unique_ptr to array reset to convertible", "[unique_ptr][array][reset][conv.qual]")
 

Function Documentation

◆ TEST_CASE()

TEST_CASE ( "unique_ptr to array reset to convertible"  ,
""  [unique_ptr][array][reset][conv.qual] 
)

Definition at line 22 of file unique_ptr_to_array_reset.cpp.

23  {
24  const int *p1 = new int[10];
26  REQUIRE(uptr.get());
27  REQUIRE(!uptr.get_deleter().called);
28  int *p2 = new int[10];
29  uptr.reset(p2);
30  REQUIRE(uptr.get());
31  REQUIRE(uptr.get_deleter().called);
32 }
unique_ptr that manages a single object
Definition: unique_ptr.hpp:38