| 104 | |
| 105 | #if defined(__cpp_lib_byte) || defined(BOOST_JSON_DOCS) |
| 106 | static_resource( |
| 107 | std::byte* buffer, |
| 108 | std::size_t size) noexcept |
| 109 | : static_resource(reinterpret_cast< |
| 110 | unsigned char*>(buffer), size) |
| 111 | { |
| 112 | } |
| 113 | #endif |
| 114 | |
| 115 | /** Overload |
nothing calls this directly
no outgoing calls
no test coverage detected