summaryrefslogtreecommitdiff
path: root/indra/llcommon/llstl.h
diff options
context:
space:
mode:
authorRye Mutt <rye@alchemyviewer.org>2024-07-01 22:58:25 -0400
committerRye Mutt <rye@alchemyviewer.org>2024-07-01 23:01:32 -0400
commitfad6a3753757778d4b50d46f44aabd0d3fa3e13b (patch)
tree77c11941a1cdafd7b5758da028fec4fbd707feec /indra/llcommon/llstl.h
parent3fa6db9603a020402eea8c61622b0cab27dbcca3 (diff)
Fix test builds
Diffstat (limited to 'indra/llcommon/llstl.h')
-rw-r--r--indra/llcommon/llstl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llstl.h b/indra/llcommon/llstl.h
index e3999cbdaa..7d41c42ba7 100644
--- a/indra/llcommon/llstl.h
+++ b/indra/llcommon/llstl.h
@@ -230,7 +230,7 @@ template <typename T>
inline typename T::mapped_type get_ptr_in_map(const T& inmap, typename T::key_type const& key)
{
// Typedef here avoids warnings because of new c++ naming rules.
- typedef T::const_iterator map_iter;
+ typedef typename T::const_iterator map_iter;
map_iter iter = inmap.find(key);
if(iter == inmap.end())
{