diff options
author | Dave Parks <davep@lindenlab.com> | 2012-10-26 15:55:58 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2012-10-26 15:55:58 -0500 |
commit | b8e14ad2b250ae8c4cae877035e38c485a841515 (patch) | |
tree | 26641f263059b48b435efcdfd709acef6195b662 /indra | |
parent | cdbfdfc351a51f4fe0c264110cf68a59f0859f04 (diff) |
MAINT-1709 Fix for >> that should have been > >
Diffstat (limited to 'indra')
-rw-r--r-- | indra/llmath/lloctree.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llmath/lloctree.h b/indra/llmath/lloctree.h index 68d8110f1d..4ac1e55cfc 100644 --- a/indra/llmath/lloctree.h +++ b/indra/llmath/lloctree.h @@ -78,7 +78,7 @@ public: typedef LLOctreeTraveler<T> oct_traveler; typedef LLTreeTraveler<T> tree_traveler; - typedef std::vector<LLPointer<T>> element_list; + typedef std::vector<LLPointer<T> > element_list; typedef LLPointer<T>* element_iter; typedef const LLPointer<T>* const_element_iter; typedef typename std::vector<LLTreeListener<T>*>::iterator tree_listener_iter; |