Skip to content
Snippets Groups Projects
Commit 807a6a59 authored by Jorrit Fahlke's avatar Jorrit Fahlke
Browse files

When reporting, don't report a keys group as a prefix to the key "group.key =

..." in addition to the section header "[ group ]".

Please merge to release.

[[Imported from SVN: r5888]]
parent 4bd60011
No related branches found
No related tags found
No related merge requests found
......@@ -125,7 +125,7 @@ void ConfigParser::report(const string prefix) const
ValueIt vend = values.end();
for(; vit!=vend; ++vit)
cout << prefix + vit->first << " = \"" << vit->second << "\"" << endl;
cout << vit->first << " = \"" << vit->second << "\"" << endl;
typedef map<string, ConfigParser>::const_iterator SubIt;
SubIt sit = subs.begin();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment