1313#include < boost/corosio/detail/config.hpp>
1414#include < boost/corosio/io_object.hpp>
1515#include < boost/corosio/io_result.hpp>
16- #include < boost/corosio /any_bufref.hpp>
16+ #include < boost/capy /any_bufref.hpp>
1717#include < boost/capy/ex/any_executor_ref.hpp>
1818#include < boost/system/error_code.hpp>
1919
@@ -127,7 +127,7 @@ class BOOST_COROSIO_DECL io_stream : public io_object
127127 std::coroutine_handle<> h,
128128 Ex const & ex) -> std::coroutine_handle<>
129129 {
130- any_bufref param (buffers_);
130+ capy:: any_bufref param (buffers_);
131131 ios_.get ().read_some (h, ex, param, token_, &ec_, &bytes_transferred_);
132132 return std::noop_coroutine ();
133133 }
@@ -139,7 +139,7 @@ class BOOST_COROSIO_DECL io_stream : public io_object
139139 std::stop_token token) -> std::coroutine_handle<>
140140 {
141141 token_ = std::move (token);
142- any_bufref param (buffers_);
142+ capy:: any_bufref param (buffers_);
143143 ios_.get ().read_some (h, ex, param, token_, &ec_, &bytes_transferred_);
144144 return std::noop_coroutine ();
145145 }
@@ -179,7 +179,7 @@ class BOOST_COROSIO_DECL io_stream : public io_object
179179 std::coroutine_handle<> h,
180180 Ex const & ex) -> std::coroutine_handle<>
181181 {
182- any_bufref param (buffers_);
182+ capy:: any_bufref param (buffers_);
183183 ios_.get ().write_some (h, ex, param, token_, &ec_, &bytes_transferred_);
184184 return std::noop_coroutine ();
185185 }
@@ -191,7 +191,7 @@ class BOOST_COROSIO_DECL io_stream : public io_object
191191 std::stop_token token) -> std::coroutine_handle<>
192192 {
193193 token_ = std::move (token);
194- any_bufref param (buffers_);
194+ capy:: any_bufref param (buffers_);
195195 ios_.get ().write_some (h, ex, param, token_, &ec_, &bytes_transferred_);
196196 return std::noop_coroutine ();
197197 }
@@ -203,15 +203,15 @@ class BOOST_COROSIO_DECL io_stream : public io_object
203203 virtual void read_some (
204204 std::coroutine_handle<>,
205205 capy::any_executor_ref,
206- any_bufref&,
206+ capy:: any_bufref&,
207207 std::stop_token,
208208 system::error_code*,
209209 std::size_t *) = 0;
210210
211211 virtual void write_some (
212212 std::coroutine_handle<>,
213213 capy::any_executor_ref,
214- any_bufref&,
214+ capy:: any_bufref&,
215215 std::stop_token,
216216 system::error_code*,
217217 std::size_t *) = 0;
0 commit comments