From 7fb5049febef4cbf231be12659e4b05d2dd7fe07 Mon Sep 17 00:00:00 2001 From: chn Date: Tue, 29 Jul 2025 20:55:03 +0800 Subject: [PATCH] fix typo in stdio move constructor --- include/boost/process/v2/stdio.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/process/v2/stdio.hpp b/include/boost/process/v2/stdio.hpp index 01d02161..4084e46f 100644 --- a/include/boost/process/v2/stdio.hpp +++ b/include/boost/process/v2/stdio.hpp @@ -184,7 +184,7 @@ struct process_io_binding process_io_binding & operator=(const process_io_binding &) = delete; process_io_binding(process_io_binding && other) noexcept - : fd(other.fd), fd_needs_closing(other.fd), ec(other.ec) + : fd(other.fd), fd_needs_closing(other.fd_needs_closing), ec(other.ec) { other.fd = target; other.fd_needs_closing = false;