detail/impl/shared_resource.ipp
100.0% Lines (6/6)
100.0% Functions (2/2)
-% Branches (0/0)
detail/impl/shared_resource.ipp
| Line | Hits | Source Code |
|---|---|---|
| 1 | // | |
| 2 | // Copyright (c) 2019 Vinnie Falco (vinnie.falco@gmail.com) | |
| 3 | // | |
| 4 | // Distributed under the Boost Software License, Version 1.0. (See accompanying | |
| 5 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) | |
| 6 | // | |
| 7 | // Official repository: https://github.com/boostorg/json | |
| 8 | // | |
| 9 | ||
| 10 | #ifndef BOOST_JSON_DETAIL_IMPL_SHARED_RESOURCE_IPP | |
| 11 | #define BOOST_JSON_DETAIL_IMPL_SHARED_RESOURCE_IPP | |
| 12 | ||
| 13 | #include <boost/json/detail/shared_resource.hpp> | |
| 14 | ||
| 15 | namespace boost { | |
| 16 | namespace json { | |
| 17 | namespace detail { | |
| 18 | ||
| 19 | // these are here so that ~memory_resource | |
| 20 | // is emitted in the library instead of | |
| 21 | // the user's TU. | |
| 22 | ||
| 23 | 21 | shared_resource:: |
| 24 | 21 | shared_resource() |
| 25 | { | |
| 26 | 21 | } |
| 27 | ||
| 28 | 21 | shared_resource:: |
| 29 | 21 | ~shared_resource() |
| 30 | { | |
| 31 | 21 | } |
| 32 | ||
| 33 | } // detail | |
| 34 | } // namespace json | |
| 35 | } // namespace boost | |
| 36 | ||
| 37 | #endif | |
| 38 |