throwing_ptr
Smart pointers that throw on dereference if null
unique_ptr_to_array_reset.cpp
Go to the documentation of this file.
1 // Copyright Claudio Bantaloukas 2017-2018.
2 // Distributed under the Boost Software License, Version 1.0.
3 // (See accompanying file LICENSE or copy at
4 // http://www.boost.org/LICENSE_1_0.txt)
5 
6 #include <catch.hpp>
7 #include <throwing/unique_ptr.hpp>
8 
9 namespace {
10 struct ArrayDeleter {
11  ArrayDeleter() : called(false) {}
12  void operator()(int *p) {
13  called = true;
14  delete[] p;
15  }
16  bool called;
17 };
18 } // namespace
19 
20 // This can only compile if the underlying implementation of
21 // std::unique_ptr allows reset via convertible pointer
22 TEST_CASE("unique_ptr to array reset to convertible",
23  "[unique_ptr][array][reset][conv.qual]") {
24  const int *p1 = new int[10];
25  throwing::unique_ptr<const int[], ArrayDeleter> uptr(p1);
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 }
TEST_CASE("unique_ptr to array reset to convertible", "[unique_ptr][array][reset][conv.qual]")