Skip to content

Commit eba0ae3

Browse files
authored
Merge pull request STEllAR-GROUP#6689 from STEllAR-GROUP/fix-unreachable-wait_all
Fix unreachable code warning in wait_all
2 parents 8ffc778 + b48b48e commit eba0ae3

File tree

1 file changed

+4
-1
lines changed
  • libs/core/async_combinators/include/hpx/async_combinators

1 file changed

+4
-1
lines changed

libs/core/async_combinators/include/hpx/async_combinators/wait_all.hpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -548,7 +548,10 @@ namespace hpx {
548548
new frame_type(values), false);
549549
return frame->wait_all();
550550
}
551-
return false;
551+
else
552+
{
553+
return false;
554+
}
552555
}
553556

554557
template <typename T>

0 commit comments

Comments
 (0)