Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-dev] static member access

Hi guys,

I have a question regarding some coding style. If I have static members of a class I can call those members from an object of that class.

class A {
  static void test();
}

A a;
a.test();

I know it is totally valid code, but when I look at JDT they allow me to set a warning level for this kind of coding. Is this something that might be implemented in codan as well?

bye Michi


Back to the top