mirror of
https://github.com/wesnoth/wesnoth
synced 2025-04-26 17:15:28 +00:00
ttt is a terrible type name; use auto instead
This commit is contained in:
parent
5392e306b9
commit
8df0c0023c
@ -136,8 +136,7 @@ config mp_game_settings::to_config() const
|
||||
cfg["savegame"] = saved_game;
|
||||
cfg.add_child("options", options);
|
||||
|
||||
typedef std::map<std::string,addon_version_info>::value_type ttt;
|
||||
for (const ttt & p : addons) {
|
||||
for(auto& p : addons) {
|
||||
config & c = cfg.add_child("addon");
|
||||
p.second.write(c);
|
||||
c["id"] = p.first;
|
||||
|
Loading…
x
Reference in New Issue
Block a user