Index: compiled/StringMap.h |
=================================================================== |
--- a/compiled/StringMap.h |
+++ b/compiled/StringMap.h |
@@ -314,17 +314,17 @@ class StringMap |
: public StringMap_internal::HashContainer<StringMap_internal::StringMapEntry<T>> |
{ |
public: |
typedef StringMap_internal::HashContainer<StringMap_internal::StringMapEntry<T>> super; |
typedef typename super::size_type size_type; |
typedef typename super::entry_type entry_type; |
typedef typename super::const_reference const_reference; |
typedef StringMap_internal::StringMapEntryReference<T> reference; |
- friend class StringMap_internal::StringMapEntryReference<T>; |
+ friend struct StringMap_internal::StringMapEntryReference<T>; |
explicit StringMap(size_type expectedEntries = 0) |
: super(expectedEntries) |
{ |
} |
StringMap(std::initializer_list<entry_type> list) |
: super(list.size()) |