GCC Code Coverage Report


Directory: libs/json/include/boost/json/
File: detail/impl/shared_resource.ipp
Date: 2025-12-23 17:20:53
Exec Total Coverage
Lines: 6 6 100.0%
Functions: 2 2 100.0%
Branches: 0 0 -%

Line Branch Exec Source
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 42 shared_resource::
29 42 ~shared_resource()
30 {
31 42 }
32
33 } // detail
34 } // namespace json
35 } // namespace boost
36
37 #endif
38