diff options
Diffstat (limited to 'src/condition_variable.cpp')
-rw-r--r-- | src/condition_variable.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/condition_variable.cpp b/src/condition_variable.cpp index ca1dca3..b53b836 100644 --- a/src/condition_variable.cpp +++ b/src/condition_variable.cpp @@ -16,8 +16,7 @@ _LIBCPP_BEGIN_NAMESPACE_STD condition_variable::~condition_variable() { - int e = pthread_cond_destroy(&__cv_); -// assert(e == 0); + pthread_cond_destroy(&__cv_); } void |