shared_resource.ipp 737 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // Copyright (c) 2019 Vinnie Falco ([email protected])
  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. #ifndef BOOST_JSON_DETAIL_IMPL_SHARED_RESOURCE_IPP
  10. #define BOOST_JSON_DETAIL_IMPL_SHARED_RESOURCE_IPP
  11. #include <boost/json/detail/shared_resource.hpp>
  12. namespace boost {
  13. namespace json {
  14. namespace detail {
  15. // these are here so that ~memory_resource
  16. // is emitted in the library instead of
  17. // the user's TU.
  18. shared_resource::
  19. shared_resource()
  20. {
  21. }
  22. shared_resource::
  23. ~shared_resource()
  24. {
  25. }
  26. } // detail
  27. } // namespace json
  28. } // namespace boost
  29. #endif