From 2c23c45cc4745005db11ec8492742b6dae53dcee Mon Sep 17 00:00:00 2001 From: "Wulf C. Krueger" Date: Fri, 7 Sep 2012 21:50:35 +0200 Subject: [PATCH] Fix the tests... again. --- test/ConfigTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/ConfigTest.cpp b/test/ConfigTest.cpp index f3b12974..ef6c215a 100644 --- a/test/ConfigTest.cpp +++ b/test/ConfigTest.cpp @@ -113,7 +113,7 @@ public: CConfig::SubConfigMapIterator it2 = conf.BeginSubConfigs(); while (it2 != conf.EndSubConfigs()) { - map::const_iterator it3 = it2->second.begin(); + std::map::const_iterator it3 = it2->second.begin(); while (it3 != it2->second.end()) { sRes += "->" + it2->first + "/" + it3->first + "\n";