diff options
author | David Chisnall <theraven@FreeBSD.org> | 2012-03-13 14:09:15 +0000 |
---|---|---|
committer | David Chisnall <theraven@FreeBSD.org> | 2012-03-13 14:09:15 +0000 |
commit | 362d815b81e2b4b66c33b99203d821b8928607e1 (patch) | |
tree | 491848d33dbdf1751fd52f321d3fbf70a8e616f2 /src/condition_variable.cpp | |
parent | 1828c5696f7bf5850943ea6c660a493a5e648669 (diff) |
Notes
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 ca1dca3280e9..b53b836bfe7f 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 |