throwing_ptr
Smart pointers that throw on dereference if null
shared_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/shared_ptr.hpp>
8 
9 TEST_CASE("hash operator of shared_ptr", "[shared_ptr][hash]") {
10  auto p = std::make_shared<int>(42);
11  throwing::shared_ptr<int> tp = p;
12  REQUIRE(std::hash<throwing::shared_ptr<int>>()(tp) ==
13  std::hash<std::shared_ptr<int>>()(p));
14 }
TEST_CASE("unique_ptr to array reset to convertible", "[unique_ptr][array][reset][conv.qual]")