Dear all,
I have a problem which I would like to get confirmed. Please consider the following code:
struct s_struct
{
double d_double[3];
float f_float;
int i_int;
};
typedef struct s_struct s_struct;
int main()
{
s_struct s;
//s. // << CC does not work after "strg + space"
//s_struct. // << here CC works (?!)
return 0;
}
the two lines in
main() that I have commented out causing me a headache. CC at this point *knows* about the struct "
s_struct" - that's for sure. Anyway, when I enter "
s." and press "strg + space" (to trigger CC) nothing happens. But: If I enter "
s_struct." and press "strg + space" I see all members of the typedef. Now of course the second is not what I want, really. ;-)
Anyway: It seems this differs from C::B to C::B. So my question is: Could somebody confirm that this happens to him/her, too?
With regards, Morten.