fortuna: fix accu thread joiner check in dtor
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
b24cf7566a
commit
11931ff3b1
@ -46,7 +46,7 @@ Fortuna::~Fortuna() noexcept {
|
||||
if (th_gen.joinable()) {
|
||||
th_gen.join();
|
||||
}
|
||||
if (th_gen.joinable()) {
|
||||
if (th_accu.joinable()) {
|
||||
th_accu.join();
|
||||
}
|
||||
if (th_sfm.joinable()) {
|
||||
|
Reference in New Issue
Block a user