doxygen is 1.5.4
On Dec 27, 2007 11:23 AM, Konstantin Serebryany <
kon...@gm...> wrote:
> 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
>
>
|