Only Members specifying a bit field is not shown. Other members are shown as expected. If all the members are bit fielded none is shown. Code completion is perfectly fine with struct, if I change my class to a struct it works fine, only class has this problem
Code: Select all
#include <stdio.h>
class Bittest
{
public:
unsigned int MENU : 1 ;
unsigned int PLAY ;
};
int main (int argc, char ** argv)
{
Bittest bittest;
return 0;
}