Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:38:58

0001 //
0002 // Copyright (c) 2019 Vinnie Falco (vinnie.falco@gmail.com)
0003 //
0004 // Distributed under the Boost Software License, Version 1.0. (See accompanying
0005 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
0006 //
0007 // Official repository: https://github.com/boostorg/json
0008 //
0009 
0010 #ifndef BOOST_JSON_DETAIL_IMPL_SHARED_RESOURCE_IPP
0011 #define BOOST_JSON_DETAIL_IMPL_SHARED_RESOURCE_IPP
0012 
0013 #include <boost/json/detail/shared_resource.hpp>
0014 
0015 namespace boost {
0016 namespace json {
0017 namespace detail {
0018 
0019 // these are here so that ~memory_resource
0020 // is emitted in the library instead of
0021 // the user's TU.
0022 
0023 shared_resource::
0024 shared_resource()
0025 {
0026 }
0027 
0028 shared_resource::
0029 ~shared_resource()
0030 {
0031 }
0032 
0033 } // detail
0034 } // namespace json
0035 } // namespace boost
0036 
0037 #endif