We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5929840 + 04215ba commit e84af77Copy full SHA for e84af77
execution.bs
@@ -389,7 +389,7 @@ struct dynamic_buffer { //
389
sender_of<dynamic_buffer> auto async_read_array(auto handle) { // 2
390
return just(dynamic_buffer{}) // 4
391
| let_value([handle] (dynamic_buffer& buf) { // 5
392
- return just(std::as_writeable_bytes(std::span(&buf.size, 1))) // 6
+ return just(std::as_writable_bytes(std::span(&buf.size, 1))) // 6
393
| async_read(handle) // 7
394
| then( // 8
395
[&buf] (std::size_t bytes_read) { // 9
0 commit comments