From 58da1065d697ded25085c5166df73466bd99c18c Mon Sep 17 00:00:00 2001 From: Vinnie Falco Date: Wed, 16 Oct 2013 15:58:35 -0700 Subject: [PATCH] Temporarily disable ServiceQueue dtor precondition asserts --- beast/threads/ServiceQueue.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/beast/threads/ServiceQueue.h b/beast/threads/ServiceQueue.h index 8d9c199a55..2de4e44e04 100644 --- a/beast/threads/ServiceQueue.h +++ b/beast/threads/ServiceQueue.h @@ -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 ::other a (m_alloc);