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