summaryrefslogtreecommitdiffstats
path: root/src/doxygen.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-10-28 18:16:56 (GMT)
committerGitHub <noreply@github.com>2019-10-28 18:16:56 (GMT)
commit088db354a539781755821fde83bb35ff294e4643 (patch)
tree963b32b71390ee31890425f716e78c996200e13b /src/doxygen.cpp
parent09955280459364087bb70de28fb69588c2f1f321 (diff)
parent80a264bf79f60c9ae4446cb93a3a93662779d885 (diff)
downloadDoxygen-088db354a539781755821fde83bb35ff294e4643.zip
Doxygen-088db354a539781755821fde83bb35ff294e4643.tar.gz
Doxygen-088db354a539781755821fde83bb35ff294e4643.tar.bz2
Merge pull request #7355 from albert-github/feature/bug_quote_warn_2
Properly open quotes in warning
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r--src/doxygen.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp
index 6d3180c..2a254ff 100644
--- a/src/doxygen.cpp
+++ b/src/doxygen.cpp
@@ -6298,13 +6298,14 @@ static void findMember(const Entry *root,
if (cd!=0 && rightScopeMatch(cd->name(),className))
{
const ArgumentList &templAl = md->templateArguments();
+ warnMsg+=" '";
if (templAl.hasParameters())
{
- warnMsg+=" 'template ";
+ warnMsg+="template ";
warnMsg+=tempArgListToString(templAl,root->lang);
warnMsg+='\n';
+ warnMsg+=" ";
}
- warnMsg+=" ";
if (md->typeString())
{
warnMsg+=md->typeString();