RE: [Doxygen-develop] Problems at last release?...
Brought to you by:
dimitri
From: <ca...@cr...> - 2005-03-16 08:09:55
|
Hi! Thank's. Work fine.=20 -----Original Message----- From: Dimitri van Heesch [mailto:do...@gm...]=20 Sent: Tuesday, March 15, 2005 9:59 PM To: =FE=C5=CC=D0=C1=CE=CF=D7 =E1=CC=C5=CB=D3=C1=CE=C4=D2 = =F7=C9=D4=C1=CC=D8=C5=D7=C9=DE Cc: doxydev Subject: Re: [Doxygen-develop] Problems at last release?... On Tue, 15 Mar 2005 14:10:20 +0300, =FE=C5=CC=D0=C1=CE=CF=D7 = =E1=CC=C5=CB=D3=C1=CE=C4=D2 =F7=C9=D4=C1=CC=D8=C5=D7=C9=DE = <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? > |