Skip to content
Snippets Groups Projects
Commit 27d25206 authored by Richard Linden's avatar Richard Linden
Browse files

fix for gcc

parent 0edb695e
No related branches found
No related tags found
No related merge requests found
...@@ -958,7 +958,7 @@ namespace LLInitParam ...@@ -958,7 +958,7 @@ namespace LLInitParam
const self_t& typed_param = static_cast<const self_t&>(param); const self_t& typed_param = static_cast<const self_t&>(param);
if (!typed_param.isProvided() || name_stack.empty()) return; 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(); for (typename std::vector<key_cache_t>::const_iterator key_it = typed_param.mCachedKeys.begin();
it != typed_param.mValues.end(); it != typed_param.mValues.end();
++key_it, ++it) ++key_it, ++it)
......
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