TEMPORARILY disable erroring out during mesh upload

This commit is contained in:
Latif Khalifa
2013-04-20 00:28:36 +02:00
parent b8d2bd578c
commit 3bdeb8e8a8

View File

@@ -486,10 +486,14 @@ LLThreadSafeRefCount::LLThreadSafeRefCount() :
LLThreadSafeRefCount::~LLThreadSafeRefCount()
{
llassert(mRef == 0);
/* TEMPORARILY disable erroring out on deleting this object with
nonzero reference count until the problem in AIStateMachine is fixed
if (mRef != 0)
{
llerrs << "deleting non-zero reference" << llendl;
}
*/
}
//============================================================================