[Doxygen-users] Asterisks not eliminated in @code
Brought to you by:
dimitri
From: Yongwei Wu <wuy...@gm...> - 2015-10-26 13:39:46
|
I have some doc comments that work well in v1.6 or earlier: /** * Functor to return objects pointed by a container of pointers. * * A typical usage might be like: * @code * vector<Object*> v; * ... * transform(v.begin(), v.end(), * ostream_iterator<Object>(cout, " "), * dereference()); * @endcode */ The generated documentation eliminates all the beginning asterisks automatically, as can be seen here: http://nvwa.sourceforge.net/doc/1.0/structnvwa_1_1dereference.html I have found the behaviour changed in v1.8: currently the generated documentation keeps the asterisks between @code and @endcode. The generated code looks like this: Functor to delete objects pointed by a container of pointers. A typical usage might be like: * list<Object*> l; * ... * for_each(l.begin(), l.end(), delete_object()); * Is this a bug or intentional change? I would appreciate the original behaviour better. Best regards, Yongwei -- Wu Yongwei URL: http://wyw.dcweb.cn/ |