inline void Actions::clearMap(ActionUseMap& map) { for(ActionUseMap::iterator it = map.begin(); it != map.end(); ++it) delete it->second; map.clear(); }
inline void Actions::clearMap(ActionUseMap& map) { // Filter out duplicates to avoid double-free std::unordered_set<Action*> set; for (const auto& it : map) { set.insert(it.second); } map.clear(); for (Action* action : set) { delete action; } }