| 280 | |
| 281 | #if defined(BOOST_ASIO_ENABLE_BUFFER_DEBUGGING) |
| 282 | const_buffer(const void* data, std::size_t size, |
| 283 | boost::asio::detail::function<void()> debug_check) |
| 284 | : data_(data), |
| 285 | size_(size), |
| 286 | debug_check_(debug_check) |
| 287 | { |
| 288 | } |
| 289 | |
| 290 | const boost::asio::detail::function<void()>& get_debug_check() const |
| 291 | { |
no outgoing calls
no test coverage detected