Skip to content

Commit e381cf2

Browse files
phorvklemens-morgenstern
authored andcommitted
fix: remove noexcept from function which may throw
wait(const group_handle &p) is the throwing version, should not be marked noexcept.
1 parent b0268cb commit e381cf2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

include/boost/process/v1/detail/posix/wait_group.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ inline void wait(const group_handle &p, std::error_code &ec) noexcept
4545
ec.clear();
4646
}
4747

48-
inline void wait(const group_handle &p) noexcept
48+
inline void wait(const group_handle &p)
4949
{
5050
std::error_code ec;
5151
wait(p, ec);

0 commit comments

Comments
 (0)