I know this isn't the place for suggestions, but I just need to vent. Why
dont c++ compilers let us use . as way of saying "this->", and hence an
alternative for m_
struct foo {
int a;
void bar(int a){
.a = a;
}
};
dont c++ compilers let us use . as way of saying "this->", and hence an
alternative for m_
struct foo {
int a;
void bar(int a){
.a = a;
}
};
Comment