diff options
author | Dave Parks <davep@lindenlab.com> | 2010-11-01 12:29:09 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2010-11-01 12:29:09 -0500 |
commit | 434109c54e8b941d644fb0c63c2693681c17b2c9 (patch) | |
tree | 198edd7af473692cba090ba3ccb64d2040f14038 | |
parent | 9c5de604cc0bd262be4f73cdc21625b0061a4734 (diff) |
Remove assert from lldictionary that keeps devs from working with mesh viewer and release viewer.
-rw-r--r-- | indra/llcommon/lldictionary.h | 4 |
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) |