diff options
author | Loren Shih <seraph@lindenlab.com> | 2010-11-04 16:34:43 -0400 |
---|---|---|
committer | Loren Shih <seraph@lindenlab.com> | 2010-11-04 16:34:43 -0400 |
commit | b0cb059b4d44de69746da7ac67c05672d039a7fd (patch) | |
tree | 1c1648ea2fbba5a404f4f88b2cc355e3bfb592a3 /indra/llcommon | |
parent | c937eb1baed9df8eb99dd8a6bbe7d39075ec08d1 (diff) |
Remove assert from lldictionary that keeps devs from working with mesh viewer and release viewer.
Diffstat (limited to 'indra/llcommon')
-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) |