Code::Blocks Forums

User forums => Using Code::Blocks => Topic started by: nightlight on October 07, 2010, 09:50:27 pm

Title: Hover hints for enums - no value shown
Post by: nightlight 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.