Use std::map without const

This commit is contained in:
Benjamin Alterauge
2021-12-24 09:03:44 +01:00
committed by wwmayer
parent 458ae2307c
commit bb5c3d2091

View File

@@ -178,7 +178,7 @@ private:
typedef std::pair<int, int> Edge;
// Note: use std::map instead of unordered_map to keep the binding order stable
#ifdef FC_OS_MACOSX
typedef boost::unordered_map<const App::ObjectIdentifier, ExpressionInfo> ExpressionMap;
typedef std::map<App::ObjectIdentifier, ExpressionInfo> ExpressionMap;
#else
typedef std::map<const App::ObjectIdentifier, ExpressionInfo> ExpressionMap;
#endif