Author Topic: Hover hints for enums - no value shown  (Read 2364 times)

Offline nightlight

  • Multiple posting newcomer
  • *
  • Posts: 21
Hover hints for enums - no value shown
« on: October 07, 2010, 09:50:27 pm »
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:

Code
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.