summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruslantproductengine <ruslantproductengine@lindenlab.com>2017-01-26 19:26:57 +0200
committerruslantproductengine <ruslantproductengine@lindenlab.com>2017-01-26 19:26:57 +0200
commit9a525c163e488775d5d57dc0beff8b3e92e50b0f (patch)
tree94ea4bc2cf7d4d8a642c716da8e0ccab77390d05
parent6770c27321cf674af57c45ffee6faf09db788a6d (diff)
MAINT-6645 - Improvement - Agents that render as jelly dolls should have their attachments render at 0 LoD to prevent loading higher LoD complexity in memory thus deterring crashes.
Fix for Linux build.
-rw-r--r--indra/newview/llvovolume.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/llvovolume.h b/indra/newview/llvovolume.h
index 3ae9ac5325..09b342b153 100644
--- a/indra/newview/llvovolume.h
+++ b/indra/newview/llvovolume.h
@@ -475,9 +475,9 @@ public:
> container;
//views
- typedef container::template index<tag_BY_DRAWABLE>::type container_BY_DRAWABLE_view;
- typedef container::template index<tag_BY_SCULPT_ID>::type container_BY_SCULPT_ID_view;
- typedef container::template index<tag_BY_SIZE>::type container_BY_SIZE_view;
+ typedef container::index<tag_BY_DRAWABLE>::type container_BY_DRAWABLE_view;
+ typedef container::index<tag_BY_SCULPT_ID>::type container_BY_SCULPT_ID_view;
+ typedef container::index<tag_BY_SIZE>::type container_BY_SIZE_view;
private:
LLSculptIDSize()