summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Parks <davep@lindenlab.com>2010-11-01 12:29:09 -0500
committerDave Parks <davep@lindenlab.com>2010-11-01 12:29:09 -0500
commit434109c54e8b941d644fb0c63c2693681c17b2c9 (patch)
tree198edd7af473692cba090ba3ccb64d2040f14038
parent9c5de604cc0bd262be4f73cdc21625b0061a4734 (diff)
Remove assert from lldictionary that keeps devs from working with mesh viewer and release viewer.
-rw-r--r--indra/llcommon/lldictionary.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/llcommon/lldictionary.h b/indra/llcommon/lldictionary.h
index 552a805b70..bc3bc3e74a 100644
--- a/indra/llcommon/lldictionary.h
+++ b/indra/llcommon/lldictionary.h
@@ -78,7 +78,9 @@ protected:
virtual Index notFound() const
{
// default is to assert
- llassert(false);
+ // don't assert -- makes it impossible to work on mesh-development and viewer-development simultaneously
+ // -- davep 2010.10.29
+ //llassert(false);
return Index(-1);
}
void addEntry(Index index, Entry *entry)