On Tue, 15 Mar 2005 14:10:20 +0300, =D0=A7=D0=B5=D0=BB=D0=BF=D0=B0=D0=BD=D0=
=BE=D0=B2 =D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B0=D0=BD=D0=B4=D1=80 =D0=92=D0=
=B8=D1=82=D0=B0=D0=BB=D1=8C=D0=B5=D0=B2=D0=B8=D1=87
<ca...@cr...> wrote:
> Hi!
> Is there a bug or new funtionality?
Bugs, the first pass comment scanner was completely rewritten
(separated from the language parser), so still expect some problems in
corner cases. But please report them in the way you did and I'll fix
them ASAP.
Regards,
Dimitri
>=20
> 1. The doxygen comments on code
> -----------------------------------
> /*!
> * \brief aaaa
> * \note qqq
> */
> class A{}
> -----------------------------------
> didn't look same as code
> -----------------------------------
> /*!
> * \brief aaaa
> *
> * \note qqq
> */
> class A{}
> -----------------------------------
> I think, that new tag end previous tag.
>=20
> 2. The doxygen comments on code
> -----------------------------------
> /*!
> *\brief 1111
> *
> * text
> */
> class A{};
> -----------------------------------
> Didn't look same as code
> -----------------------------------
> /*!
> * \brief 1111
> *
> * text
> */
> class A{};
> -----------------------------------
> Must I add space before backslash symbol?
>
|