Skip to content

Commit 7fb5049

Browse files
CHN-betaKlemens Morgenstern
authored andcommitted
fix typo in stdio move constructor
1 parent 02e14e8 commit 7fb5049

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/boost/process/v2/stdio.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ struct process_io_binding
184184
process_io_binding & operator=(const process_io_binding &) = delete;
185185

186186
process_io_binding(process_io_binding && other) noexcept
187-
: fd(other.fd), fd_needs_closing(other.fd), ec(other.ec)
187+
: fd(other.fd), fd_needs_closing(other.fd_needs_closing), ec(other.ec)
188188
{
189189
other.fd = target;
190190
other.fd_needs_closing = false;

0 commit comments

Comments
 (0)