<table cellspacing="0" cellpadding="0" border="0" ><tr><td valign="top" style="font: inherit;">Dear all,<br><br>I have an enum declaration and a structure declaration of following kind:<br><br>typedef enum<br>{<br>  BITS_HEADER,<br>  BITS_TOTAL_MB,<br>  BITS_MB_MODE,<br>  BITS_INTER_MB,<br>  BITS_CBP_MB,<br>  BITS_COEFF_Y_MB,<br>  BITS_COEFF_UV_MB,<br>  BITS_DELTA_QUANT_MB,<br>  MAX_BITCOUNTER_MB<br>} BitCountType;<br><br>typedef struct macroblock<br>{<br>  ....... <br>  int bitcounter[MAX_BITCOUNTER_MB];<br>  .......<br>} Macroblock;<br><br>In my clang plugin, the type of the field bitcounter is shown as ConstantArrayType of size 8.<br><br>Is there a way to determine that the size of this array is MAX_BITCOUNTER_MB and not 8, so I can make this structure dependent to the enum.<br><br>Thanks in advance.<br>Murat<br></td></tr></table><br>