Skip to content

Commit aea9328

Browse files
fixes #156
1 parent 8d70032 commit aea9328

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/condition_variable.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,9 @@ namespace pthread {
9292

9393
condition_variable::~condition_variable () {
9494
int rc = pthread_cond_destroy(&_condition);
95-
if (rc != 0){
96-
throw condition_variable_exception("pthread condition variable destroy failed.", rc);
97-
}
95+
// if (rc != 0){
96+
// throw condition_variable_exception("pthread condition variable destroy failed.", rc);
97+
// }
9898
}
9999

100100
} // namespace pthread

0 commit comments

Comments
 (0)