diff options
author | Richard Linden <none@none> | 2010-09-22 16:53:06 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2010-09-22 16:53:06 -0700 |
commit | 66f6bfc8dd09edd09f536d7a9fbf739074b82d22 (patch) | |
tree | 65d889d1fd66b5fd51ce1cbf43192c6d5710357f | |
parent | 5626cc0ccfabfaec74aee5d7bdf6b92d76d9951f (diff) | |
parent | 27d2520685039f81a17d410a66dd8623156899ce (diff) |
merge
-rw-r--r-- | indra/llxuixml/llinitparam.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llxuixml/llinitparam.h b/indra/llxuixml/llinitparam.h index 83b27f5396..8cb5bd80fc 100644 --- a/indra/llxuixml/llinitparam.h +++ b/indra/llxuixml/llinitparam.h @@ -958,7 +958,7 @@ namespace LLInitParam const self_t& typed_param = static_cast<const self_t&>(param); if (!typed_param.isProvided() || name_stack.empty()) return; - typename const_iterator it = typed_param.mValues.begin(); + const_iterator it = typed_param.mValues.begin(); for (typename std::vector<key_cache_t>::const_iterator key_it = typed_param.mCachedKeys.begin(); it != typed_param.mValues.end(); ++key_it, ++it) |