diff options
author | albert-github <albert.tests@gmail.com> | 2019-05-06 10:10:52 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2019-05-06 10:10:52 (GMT) |
commit | 42f27ec5dd754cc097fe44b9dfef486e854a821e (patch) | |
tree | 7aaf57b6dd3581734b8995ade1b33404ab908cde /src/doxygen.cpp | |
parent | c637dede9ec30c2e35f19636edc0b3fd424b45e5 (diff) | |
download | Doxygen-42f27ec5dd754cc097fe44b9dfef486e854a821e.zip Doxygen-42f27ec5dd754cc097fe44b9dfef486e854a821e.tar.gz Doxygen-42f27ec5dd754cc097fe44b9dfef486e854a821e.tar.bz2 |
Missing white space in warning
Some messages give a result in the form of:
`'static ostream & operator<<(ostream &out, const EntityAuth &a)' at line 61 of fileD:/Fossies/ceph-14.2.1/src/auth/Auth.h`
i.e. space was missing `file` and `D:`
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r-- | src/doxygen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp index 347cd2a..153b1cb 100644 --- a/src/doxygen.cpp +++ b/src/doxygen.cpp @@ -5611,7 +5611,7 @@ static bool findGlobalMember(Entry *root, warnMsg+=" '"; warnMsg+=substitute(md->declaration(),"%","%%"); warnMsg+="' at line "+QCString().setNum(md->getDefLine())+ - " of file"+md->getDefFileName()+"\n"; + " of file "+md->getDefFileName()+"\n"; } } warn(root->fileName,root->startLine,warnMsg); |