From: Mukund Sivaraman Date: Tue, 23 Oct 2012 04:55:14 +0000 (+0530) Subject: [2236] Remove obsolete comment X-Git-Tag: trac2487_base~18^2~33^2~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7c4e02c157bf7a4baaa81c448ff485e7dec31182;p=thirdparty%2Fkea.git [2236] Remove obsolete comment --- diff --git a/src/lib/util/threads/sync.cc b/src/lib/util/threads/sync.cc index ca467b63d4..cf68c5e912 100644 --- a/src/lib/util/threads/sync.cc +++ b/src/lib/util/threads/sync.cc @@ -128,9 +128,6 @@ Mutex::~Mutex() { void Mutex::postLockAction() { - // This assertion would fail only in non-debugging mode, in which case - // this method wouldn't be called either, so we simply assert the - // condition. assert(impl_->locked_count == 0); ++impl_->locked_count; }