Create a new modifiable buffer from an existing buffer. * @returns mutable_buffer(b) . */
| 868 | * @returns <tt>mutable_buffer(b)</tt>. |
| 869 | */ |
| 870 | BOOST_ASIO_NODISCARD inline mutable_buffer buffer( |
| 871 | const mutable_buffer& b) noexcept |
| 872 | { |
| 873 | return mutable_buffer(b); |
| 874 | } |
| 875 | |
| 876 | /// Create a new modifiable buffer from an existing buffer. |
| 877 | /** |
nothing calls this directly
no test coverage detected