diff options
author | Merov Linden <merov@lindenlab.com> | 2012-01-17 08:55:19 -0800 |
---|---|---|
committer | Merov Linden <merov@lindenlab.com> | 2012-01-17 08:55:19 -0800 |
commit | 1f9529c0c2b02c4ceee912f8ecb35181174cc7cc (patch) | |
tree | a66329bf5f26dd9c5b7fcdb49a2d183a6d8aface | |
parent | 64ff5a521382756808a2793b375868a311b0a0a1 (diff) |
EXP-1772 : Suppress a useless and confusing assert in destructor, called cleanup in there instead.
-rw-r--r-- | indra/newview/llwearablelist.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llwearablelist.cpp b/indra/newview/llwearablelist.cpp index ddbcdfc3f7..6f6411ce3c 100644 --- a/indra/newview/llwearablelist.cpp +++ b/indra/newview/llwearablelist.cpp @@ -63,7 +63,7 @@ struct LLWearableArrivedData LLWearableList::~LLWearableList() { - llassert_always(mList.empty()) ; + cleanup(); } void LLWearableList::cleanup() |