News:

When registered with our forums, feel free to send a "here I am" post here to differ human beings from SPAM bots.

Main Menu

Hover hints for enums - no value shown

Started by nightlight, October 07, 2010, 09:50:27 PM

Previous topic - Next topic

nightlight

When mouse cursor hovers over enum names, the info displayed shows only the enum name (which is already the same as the string it is hovering over), but no enum value is shown. For example:

enum {
  MAXARG=10
};

int main(int argc,char **argv)
{
  if (argc>MAXARG) return 1;
}


Hovering over second MAXARG shows only "Unnamed:MAXRG=" info but no value 10, which is what one would expect to see.