Skip to content
Snippets Groups Projects
Commit 434109c5 authored by David Parks's avatar David Parks
Browse files

Remove assert from lldictionary that keeps devs from working with mesh viewer and release viewer.

parent 9c5de604
No related branches found
No related tags found
No related merge requests found
...@@ -78,7 +78,9 @@ class LLDictionary : public std::map<Index, Entry *> ...@@ -78,7 +78,9 @@ class LLDictionary : public std::map<Index, Entry *>
virtual Index notFound() const virtual Index notFound() const
{ {
// default is to assert // 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); return Index(-1);
} }
void addEntry(Index index, Entry *entry) void addEntry(Index index, Entry *entry)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment