[DOC++] Array type not linked correctly
Brought to you by:
adragos
|
From: Edward B. <eb...@el...> - 2002-11-14 00:23:22
|
Hi,
=20
When I define an array type, the HTML documentation for structures and
functions that make use of it does not link back to the array type. For
example, say that I define types as follows
=20
=20
/// @memo Maximum length (including null) of string.
const int MaxStringLen =3D 25;
/// @memo Static string type.
typedef char StaticStringT[MaxStringLen];
=20
/// @memo Example structure.
struct ExampleT
{
/// @memo Name field.
StaticStringT name;
/// @memo Age field.
int age;
};
=20
The resultant HTML documentation will include a section for the typedef
called "StaticStringT[MaxStringLen]", and the structure is documented as
having a name field of type "StaticStringT". Since these don't match, I
can see why no link is created, but I think the typedef documentation is
being generated incorrectly (should be called "StaticStringT" as well).
=20
I haven't seen this reported previously, so I'm curious if this is a bug
or operator error. Any assistance would be appreciated.
=20
Ed
=20
Edward Berg
ELEMATICS
V 503.716.1029
F 503.716.1061
=20
|