0

Is there a lint script that will enforce use of this for class variables?

Ex -

class A {
    int var1;

    void func() {
        return var1;
    }
}

should be -

class A {
    int var1;

    void func() {
        return this->var1;
    }
}
Nishant
  • 129
  • 1
  • 10

0 Answers0