diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2018-06-10 09:15:32 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-10 09:15:32 (GMT) |
commit | 4536982bdebc0056d0c5d64a12881f20b5801c06 (patch) | |
tree | c9a34b73cb1edf03f2a0daf831ff50970b965309 /src/commentcnv.l | |
parent | 55735feae7530d1650b95f96d33448d64076f476 (diff) | |
parent | f7663cf300375b4ec8d8fe052f3da48782743919 (diff) | |
download | Doxygen-4536982bdebc0056d0c5d64a12881f20b5801c06.zip Doxygen-4536982bdebc0056d0c5d64a12881f20b5801c06.tar.gz Doxygen-4536982bdebc0056d0c5d64a12881f20b5801c06.tar.bz2 |
Merge pull request #714 from albert-github/feature/bug_test_cond
Problem with \cond in normal comment of test 015
Diffstat (limited to 'src/commentcnv.l')
-rw-r--r-- | src/commentcnv.l | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commentcnv.l b/src/commentcnv.l index 89d2fea..10dab28 100644 --- a/src/commentcnv.l +++ b/src/commentcnv.l @@ -1068,7 +1068,7 @@ void convertCppComments(BufStr *inBuf,BufStr *outBuf,const char *fileName) { CondCtx *ctx = g_condStack.pop(); QCString sectionInfo = " "; - if (ctx->sectionId!=" ") sectionInfo.sprintf(" with label %s ",ctx->sectionId.data()); + if (ctx->sectionId!=" ") sectionInfo.sprintf(" with label '%s' ",ctx->sectionId.stripWhiteSpace().data()); warn(g_fileName,ctx->lineNr,"Conditional section%sdoes not have " "a corresponding \\endcond command within this file.",sectionInfo.data()); } |