Don't assert at exit.

It's perfectly ok when a responder is being deleted before it finished,
when the application is exiting.
This commit is contained in:
Aleric Inglewood
2013-12-27 17:55:49 +01:00
parent 1f80dac4c0
commit 19a36a6e12

View File

@@ -303,7 +303,7 @@ public:
~LLMeshSkinInfoResponder()
{
llassert(mProcessed);
llassert(mProcessed || LLApp::isExiting());
}
/*virtual*/ void completedRaw(U32 status, const std::string& reason,
@@ -331,7 +331,7 @@ public:
~LLMeshDecompositionResponder()
{
llassert(mProcessed);
llassert(mProcessed || LLApp::isExiting());
}
/*virtual*/ void completedRaw(U32 status, const std::string& reason,
@@ -359,7 +359,7 @@ public:
~LLMeshPhysicsShapeResponder()
{
llassert(mProcessed);
llassert(mProcessed || LLApp::isExiting());
}
/*virtual*/ void completedRaw(U32 status, const std::string& reason,