make ConfigFile use OrderedHashMap

This commit is contained in:
Karroffel
2017-11-03 14:33:19 +01:00
parent c880302754
commit 38d56c8351
3 changed files with 11 additions and 10 deletions

View File

@ -181,7 +181,7 @@ public:
};
ConstElement find(const K &p_key) const {
typename InternalList::Element **list_element = map.getptr(p_key);
typename InternalList::Element *const *list_element = map.getptr(p_key);
if (list_element) {
return ConstElement(*list_element);
}