throwing_ptr
Smart pointers that throw on dereference if null
unique_ptr_hash.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 TEST_CASE("hash operator of unique_ptr", "[unique_ptr][hash]") {
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 }
TEST_CASE("unique_ptr to array reset to convertible", "[unique_ptr][array][reset][conv.qual]")