[Doxygen-develop] Problems at last release?...
Brought to you by:
dimitri
From: <ca...@cr...> - 2005-03-15 11:09:08
|
Hi! Is there a bug or new funtionality? 1. The doxygen comments on code ----------------------------------- /*! * \brief aaaa * \note qqq */ class A{} ----------------------------------- didn't look same as code=20 ----------------------------------- /*! * \brief aaaa * * \note qqq */ class A{} ----------------------------------- I think, that new tag end previous tag. 2. The doxygen comments on code ----------------------------------- /*!=20 *\brief 1111 * * text */ class A{}; ----------------------------------- Didn't look same as code ----------------------------------- /*!=20 * \brief 1111 * * text */ class A{}; ----------------------------------- Must I add space before backslash symbol? |