You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cppalliance/capy#262 removes the `const_buffer_pair` /
`mutable_buffer_pair` aliases and demotes `buffer_array<N, IsConst>`
from `capy::` to `capy::detail::`. corosio migrates:
- `test/unit/buffer_param.cpp`: replace `capy::const_buffer_pair` /
`capy::mutable_buffer_pair` with `std::array<capy::const_buffer, 2>`
/ `std::array<capy::mutable_buffer, 2>`. Drop the
`buffers/buffer_pair.hpp` include.
- tls_stream.hpp / wolfssl_stream.{hpp,cpp} / openssl_stream.{hpp,cpp}:
replace `capy::mutable_buffer_array<N>` / `capy::const_buffer_array<N>`
with `capy::detail::mutable_buffer_array<N>` /
`capy::detail::const_buffer_array<N>` and update include paths to
`boost/capy/detail/buffer_array.hpp`. corosio's TLS stream interface
acknowledges that this scatter/gather fixed-capacity helper is now
capy-internal; using `detail::` from corosio is the explicit choice
made when buffer_array became internal machinery.
Coordinated with capy PR cppalliance/capy#262.
0 commit comments