Is there an option for CLion to warn about unimplemented methods? Follow
This is a trivial warning in Java but I can't find an option in CLion to enable this and it does not exist by default.
I have class A with a pure virtual method and class B which inherits it. While there is an option to implement the missing functions from the "Code > Implement Functions..." menu, there is no warning about missing implementation as a result of inheritance.
class A {
virtual void a() = 0;
};
class B : A {
};
Please sign in to leave a comment.