mirror of
https://github.com/wesnoth/wesnoth
synced 2025-05-15 09:02:30 +00:00
change to typedeffed typenames
This commit is contained in:
parent
5656f41ab3
commit
b790014503
@ -42,7 +42,7 @@
|
||||
#include "serialization/string_utils.hpp"
|
||||
|
||||
|
||||
typedef std::map<std::string,t_string> string_map;
|
||||
typedef std::map<std::string, t_string> string_map;
|
||||
|
||||
class config;
|
||||
|
||||
@ -252,9 +252,9 @@ public:
|
||||
|
||||
struct any_child
|
||||
{
|
||||
const child_map::key_type &key;
|
||||
const string_map::key_type &key;
|
||||
const config &cfg;
|
||||
any_child(const child_map::key_type *k, const config *c): key(*k), cfg(*c) {}
|
||||
any_child(const string_map::key_type *k, const config *c): key(*k), cfg(*c) {}
|
||||
};
|
||||
|
||||
struct all_children_iterator
|
||||
|
Loading…
x
Reference in New Issue
Block a user