doc: updated wiki syntax for --doc output

This commit is contained in:
Daniel Marjamäki 2014-10-18 21:20:29 +02:00
parent 28444a522b
commit 0ed2b580b2
2 changed files with 2 additions and 2 deletions

View File

@ -99,7 +99,7 @@ private:
std::string info = "Warn if any of these non reentrant functions are used:\n";
std::map<std::string,std::string>::const_iterator it(_nonReentrantFunctions.begin()), itend(_nonReentrantFunctions.end());
for (; it!=itend; ++it) {
info += "* " + it->first + "\n";
info += "- " + it->first + "\n";
}
return info;
}

View File

@ -139,7 +139,7 @@ private:
std::string info = "Warn if any of these obsolete functions are used:\n";
std::map<std::string,std::string>::const_iterator it(_obsoletePosixFunctions.begin()), itend(_obsoletePosixFunctions.end());
for (; it!=itend; ++it) {
info += "* " + it->first + "\n";
info += "- " + it->first + "\n";
}
return info;
}