Codechange: Use std::map instead of custom SmallMap.
This commit is contained in:
@@ -25,7 +25,7 @@ enum SaveLoadInvalidateWindowData {
|
||||
SLIWD_FILTER_CHANGES, ///< The filename filter has changed (via the editbox)
|
||||
};
|
||||
|
||||
typedef SmallMap<uint, CompanyProperties *> CompanyPropertiesMap;
|
||||
using CompanyPropertiesMap = std::map<uint, CompanyProperties *>;
|
||||
|
||||
/**
|
||||
* Container for loading in mode SL_LOAD_CHECK.
|
||||
|
||||
Reference in New Issue
Block a user