[Doxygen-develop] bug? multi-line '///' comment incorrectly parsed in presence of '*/'
Brought to you by:
dimitri
From: Konstantin S. <kon...@gm...> - 2007-12-27 08:23:50
|
Hi, If I have a two-line '///' comment which has '*/' in the second line, it is interpreted as comment terminator. Looks like a bug. Shall I file a bug report? Thanks, --kcc % ls Doxyfile b.h % head * ==> Doxyfile <== INPUT=b.h PROJECT_NAME=FOO GENERATE_HTML=YES GENERATE_LATEX=NO ==> b.h <== /// @file b.h /// Two-line comment, /// second line has misleading */ comment terminator. void AAAAA(); % doxygen > /dev/null 2>&1 % lynx -dump html/b_8h.html ... Functions comment terminator *void [4]AAAAA () ... Function Documentation comment terminator* void AAAAA ( ) Two-line comment, second line has misleading |