Temporarily disable ServiceQueue dtor precondition asserts

This commit is contained in:
Vinnie Falco
2013-10-16 15:58:35 -07:00
parent fe58c1a383
commit 58da1065d6

View File

@@ -449,7 +449,9 @@ public:
SharedState::Access state (m_state);
// Must be empty
bassert (state->handlers.empty());
//bassert (state->handlers.empty());
// Cannot destroy while threads are waiting
bassert (state->waiting.empty());
typename Allocator::template rebind <Waiter>::other a (m_alloc);