In the code, I'm reviewing, for a given class
class A {
void foo();
void goo();
int member;
};
Own members and methods of this class are always accessed like this:
void A::foo() {
this->goo();
this->member = 5;
}
Is there any reason to use it instead of:
void A::foo() {
goo();
member = 5;
}