Re: [Doxygen-develop] Aliases
Brought to you by:
dimitri
From: Dimitri V. H. <do...@gm...> - 2009-08-01 14:45:48
|
On 31 jul 2009, at 11:41, John Tapsell wrote: > Hey all, > > At the moment you can't use cond inside an alias, like: > > ALIASES = foodev="\cond FooDev" \ > endfoodev="\endcond" > > (http://bugzilla.gnome.org/show_bug.cgi?id=485773) > > Does anyone know of a work around? > > Can anyone give a hint how I could fix this bug in doxygen? The problem is that both the ALIASES resolution and the processing of \cond..\endcond section's are done in the same pass, in src/commentcnv.l. To do this properly a two-pass approach would be needed. First the ALIASES need to be resolved and then the \cond sections need to be processed. Alternatively, some special treatment could be given to expanded aliases with \cond or \endcond commands. Regards, Dimitri |