| 253 | |
| 254 | #if defined(ASIO_ENABLE_BUFFER_DEBUGGING) |
| 255 | const_buffer(const void* data, std::size_t size, |
| 256 | asio::detail::function<void()> debug_check) |
| 257 | : data_(data), |
| 258 | size_(size), |
| 259 | debug_check_(debug_check) |
| 260 | { |
| 261 | } |
| 262 | |
| 263 | const asio::detail::function<void()>& get_debug_check() const |
| 264 | { |
no outgoing calls
no test coverage detected