[DOC++] bug report - documentation of a single declaration of several variables.
Brought to you by:
adragos
|
From: Fedor V. F. <ff...@uk...> - 2003-01-23 10:51:55
|
Greetings.
I guess there is a little bug in Doc++ processor:
When documenting a several variables within single C declaration, like
double ex_a, ex_b, ey_a, ey_b, ez_a, ez_b;
only first one (ex_a) get to the resulting manual. The same goes for
structures, only first of such declared fields get to report. For example:
/** Structure description ....
*/
struct S_FdtdUpdateConsts{
double ex_a, ex_b, ey_a, ey_b, ez_a, ez_b;
double hx_a, hx_b, hy_a, hy_b, hz_a, hz_b;
} ;
get in report only
..
double ex_a
double hx_a
..
fields:(
Of course it is possible to avoid this by rewriting all variables and
structure fields definitions with separate declarations, but it is not
convenient solution.
If somebody could fix this bug it would be nice.
With best regards to everybody
Fedor.
|