From b79001450352da133013f19db95f05a97cf4c232 Mon Sep 17 00:00:00 2001 From: Chris Hopman Date: Sat, 11 Jul 2009 09:01:49 +0000 Subject: [PATCH] change to typedeffed typenames --- src/config.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/config.hpp b/src/config.hpp index dbe7bba2ad5..a4eabe4b018 100644 --- a/src/config.hpp +++ b/src/config.hpp @@ -42,7 +42,7 @@ #include "serialization/string_utils.hpp" -typedef std::map string_map; +typedef std::map 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