Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: compiled/StringMap.h

Issue 29411657: Noissue - [emscripten] Address compiler warnings (Closed) Base URL: https://hg.adblockplus.org/adblockpluscore
Patch Set: Created April 13, 2017, 3:46 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
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())
« compile ('K') | « compiled/String.h ('k') | compiled/filter/ActiveFilter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld