| 3177 | |
| 3178 | private: |
| 3179 | static |
| 3180 | void |
| 3181 | relocate( |
| 3182 | value* dest, |
| 3183 | value const& src) noexcept |
| 3184 | { |
| 3185 | std::memcpy( |
| 3186 | static_cast<void*>(dest), |
| 3187 | &src, |
| 3188 | sizeof(src)); |
| 3189 | } |
| 3190 | |
| 3191 | BOOST_JSON_DECL |
| 3192 | storage_ptr |
nothing calls this directly
no outgoing calls
no test coverage detected