Warning, /sdk/clazy/docs/checks/README-virtual-call-ctor.md is written in an unsupported language. File is not indexed.

0001 # virtual-call-ctor
0002 
0003 Finds places where you're calling pure virtual functions inside a constructor or destructor.
0004 Compilers usually warn about this if there isn't any indirection, this check will catch cases like calling
0005 a non-pure virtual that calls a pure virtual.
0006 
0007 
0008 This check only looks for pure virtuals, ignoring non-pure, which in theory you shouldn't call,
0009 but seems common practice.