forked from litecoin-project/litecoin
-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
commit dbd95cdaefdea95307d004f019a1c394cf9389f0 | ||
Author: fanquake <fanquake@gmail.com> | ||
Date: Mon Aug 17 20:15:17 2020 +0800 | ||
|
||
Remove unused variable in Boost Process | ||
|
||
This causes issues with our linters / CI. | ||
|
||
Can be removed once depends Boost is 1.71.0 or later. | ||
|
||
diff --git a/boost/process/detail/posix/wait_group.hpp b/boost/process/detail/posix/wait_group.hpp | ||
index 9dc249803..2502d9772 100644 | ||
--- a/boost/process/detail/posix/wait_group.hpp | ||
+++ b/boost/process/detail/posix/wait_group.hpp | ||
@@ -137,7 +137,6 @@ inline bool wait_until( | ||
|
||
do | ||
{ | ||
- int ret_sig = 0; | ||
int status; | ||
if ((::waitpid(timeout_pid, &status, WNOHANG) != 0) | ||
&& (WIFEXITED(status) || WIFSIGNALED(status))) |