- std::map<std::string,map_stringitem_t> strMixed;
- std::map<std::string,map_stringitem_t> strSections;
- std::map<std::string,map_stringitem_t> strPkgNames;
- std::map<std::string,map_stringitem_t> strVersions;
+ // Dirty hack for public users that do not use C++11 yet
+#if __cplusplus >= 201103L
+ std::unordered_map<std::string,map_stringitem_t> strMixed;
+ std::unordered_map<std::string,map_stringitem_t> strSections;
+ std::unordered_map<std::string,map_stringitem_t> strPkgNames;
+ std::unordered_map<std::string,map_stringitem_t> strVersions;
+#endif