Here is another code analysis warning:
Warning
C26435
FunctionCAssignSelectedColumnDlg::DoDataExchange
should specify exactly one ofvirtual
,override
, orfinal
(c.128).
Example (boilerplate MFC code):
void CAssignSelectedColumnDlg::DoDataExchange(CDataExchange* pDX)
{
...
...
}
If I understand the documentation correctly, I need to attach either:
override
orfinal
... to the function declaration in the header?