Skip to content

Commit ec7788e

Browse files
committed
bug_771452 Warnings show wrong filename when same addtogroup name used in multiple files
Problem with tests 64,74 and 81 as here a list follows so an artificial newline has to be added
1 parent b50ba46 commit ec7788e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/definition.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ void DefinitionImpl::_setDocumentation(const QCString &d,const QCString &docFile
405405
p->details = std::make_optional<DocInfo>();
406406
}
407407
DocInfo &details = p->details.value();
408-
QCString docPre = " \\ifile \"" + docFile + "\" \\iline " + std::to_string(docLine) + " ";
408+
QCString docPre = " \\ifile \"" + docFile + "\" \\iline " + std::to_string(docLine) + " \\ilinebr ";
409409
if (details.doc.isEmpty()) // fresh detailed description
410410
{
411411
details.doc = docPre + doc;

0 commit comments

Comments
 (0)