Hi,
I'm loving the VA Code Inspection for updating all my old code.
I think it would be great if it could also suggest converting C-style casts to C++ casts
e.g.
((CSpinButtonCtrl*)GetDlgItem(IDC_SPIN1))->SetRange32(1, 100);
to
static_cast<CSpinButtonCtrl*>(GetDlgItem(IDC_SPIN1))->SetRange32(1, 100);
I reckon it could even figure out whether to use static_cast, const_cast or reinterpret_cast.
Best regards
Bernhard