Hello doxygeners,
I think I have found a bug in doxygen's grouping output:
Doxygen erroneously puts class member functions of a member group
into another group, defined with @defgroup later on:
Consider the following input:
-------
class A {
public:
//@{ @name group1
int f();
//@}
};
/*! @defgroup g2 Group of functions
*/
/*! @ingroup g2
*/
void fun1();
--------
This leads to the output (group__g2.html):
---------
Group of functions
Functions
int=20
f () =20
^^^^^^^ NOT IN GROUP g2!
void=20
fun1 ()
----------
The error occurs with both doxygen 1.2.7 and 1.2.5,
and also if class A is defined in a separate file.
cheers
--guntram
--=20
------------------------------------------------------------------
Dr. Guntram Berti | voice: ++49 +355 69 37 17
| fax : ++49 +355 69 24 02
LS Numerische Mathematik & | be...@ma...
Wissenschaftliches Rechnen | http://www.math.tu-cottbus.de/~berti
Institut f=FCr Mathematik | =20
BTU Cottbus | R 313, O__ =20
Universit=E4tsplatz 3-4 | Lehrgeb=E4ude 1 c/ /'_
D-03044 Cottbus | (*) \(*)=20
------------------------------------------------------------------
|