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
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
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
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
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
*
*/
/*