Anonymous - 2007-10-09

In documenting a C project, the code has a couple of instances of local variables defines as

         char msg[100];

and structures such as:

         struct {
              int pntr;
              char msg[200];
         } log[50];

The problem is the Variable Documentation "Referenced by" fields contains routine names that point to either of the above msg variables is ie doxygen can't separate the structure element "msg" from the local variable msg.

Is there some setup to prevent this or do I need to rename the variables.

Thanks