summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2019-10-10 14:17:36 (GMT)
committeralbert-github <albert.tests@gmail.com>2019-10-10 14:17:36 (GMT)
commit78b5c447d516d64237f73e08a7ba2ad488201aa7 (patch)
tree0bb2fe2a35239f889bb3734558d8b201f1bb8ddf /src
parent9a23681bc4322a1912fc98f683bcf3e49a85f47b (diff)
downloadDoxygen-78b5c447d516d64237f73e08a7ba2ad488201aa7.zip
Doxygen-78b5c447d516d64237f73e08a7ba2ad488201aa7.tar.gz
Doxygen-78b5c447d516d64237f73e08a7ba2ad488201aa7.tar.bz2
Properly close quotes in warning
Found warning like: ``` Possible candidates: 'template < T > gmic::gmic(const T &pixel_type=(T) 0) 'template < T > gmic::gmic(const char *const commands_line, const char *const custom_commands=0, const bool include_stdlib=true, float *const p_progress=0, bool *const p_is_abort=0, const T &pixel_type=(T) 0) 'template < T > gmic::gmic(const char *const commands_line, cimg_library::CImgList< T > &images, cimg_library::CImgList< char > &images_names, const char *const custom_commands=0, const bool include_stdlib=true, float *const p_progress=0, bool *const p_is_abort=0) ``` Note the starting quote `'` but there is no closing quote (in case of a file and line the closing quote is present.
Diffstat (limited to 'src')
-rw-r--r--src/doxygen.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp
index 184220c..7b3c7d9 100644
--- a/src/doxygen.cpp
+++ b/src/doxygen.cpp
@@ -6405,6 +6405,8 @@ static void findMember(const Entry *root,
warnMsg+="' at line "+QCString().setNum(md->getDefLine()) +
" of file "+md->getDefFileName();
}
+ else
+ warnMsg += "'";
warnMsg+='\n';
}