doc: updated wiki syntax for --doc output
This commit is contained in:
parent
28444a522b
commit
0ed2b580b2
|
@ -99,7 +99,7 @@ private:
|
||||||
std::string info = "Warn if any of these non reentrant functions are used:\n";
|
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());
|
std::map<std::string,std::string>::const_iterator it(_nonReentrantFunctions.begin()), itend(_nonReentrantFunctions.end());
|
||||||
for (; it!=itend; ++it) {
|
for (; it!=itend; ++it) {
|
||||||
info += "* " + it->first + "\n";
|
info += "- " + it->first + "\n";
|
||||||
}
|
}
|
||||||
return info;
|
return info;
|
||||||
}
|
}
|
||||||
|
|
|
@ -139,7 +139,7 @@ private:
|
||||||
std::string info = "Warn if any of these obsolete functions are used:\n";
|
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());
|
std::map<std::string,std::string>::const_iterator it(_obsoletePosixFunctions.begin()), itend(_obsoletePosixFunctions.end());
|
||||||
for (; it!=itend; ++it) {
|
for (; it!=itend; ++it) {
|
||||||
info += "* " + it->first + "\n";
|
info += "- " + it->first + "\n";
|
||||||
}
|
}
|
||||||
return info;
|
return info;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue