Re: [Doxygen-users] 1.8.6 no longer creates references to pages

2014-01-09 Thread Marcus Stein
Hi, > Nested comments are allowed now, but only if they are properly terminated, > which is not the case in your example. > If not then you should escape them like so: > > file(GLOB SRC_FILES src/\*.c src/\*.cpp) > > or use \verbatim..\endverbatim. > > I've added a warning when such an comme

Re: [Doxygen-users] 1.8.6 no longer creates references to pages

2014-01-08 Thread Dimitri van Heesch
Hi Marcus, Nested comments are allowed now, but only if they are properly terminated, which is not the case in your example. If not then you should escape them like so: file(GLOB SRC_FILES src/\*.c src/\*.cpp) or use \verbatim..\endverbatim. I've added a warning when such an comment is enco

Re: [Doxygen-users] 1.8.6 no longer creates references to pages

2014-01-08 Thread Marcus Stein
Hi, I was able to encircle the problem. If you run doxygen 1.8.6 on this: --- /*! * \mainpage * * \section About Welcome * * \li \ref Util_BuildSystemTools */ /*! * \page Util Applications + libraries * * \li \subpage

Re: [Doxygen-users] 1.8.6 no longer creates references to pages

2014-01-07 Thread Dimitri van Heesch
Hi Marcus, The 2 comment blocks with the \page are not marked as special comments so doxygen will ignore them. Here is the corrected example: /*! * \mainpage * * \ref A * \ref B * */ /*! * \page A * Hello, World! * */ /*! * \page B * doxygen rulez! * */ Regards, Dimiri On 07 Jan 2014, at 1

[Doxygen-users] 1.8.6 no longer creates references to pages

2014-01-07 Thread Marcus Stein
Hi @all, the doxygen manual says: "\ref ["(text)"] Creates a reference to a named section, subsection, page or anchor. [...]" This worked fine for me up to 1.8.5 but in 1.8.6 not anymore. Or is there sth. wrong with the following construct? /*! * \mainpage * * \ref A * \ref B * */ /*