-
Key: CPP1116-14
-
Status: closed
-
Source: Remedy IT ( Johnny Willemsen)
-
Summary:
The destructor should change from
virtual ~V_factory();
to
~V_factory() override;
The virtual is redundant, that is already in the base
-
Reported: CPP11 1.5 — Thu, 22 Apr 2021 12:07 GMT
-
Disposition: Resolved — CPP 1.6
-
Disposition Summary:
Update the code in 6.18.10.2
Modern C++ usage is to prefer the override keyword to virtual.
-
Updated: Thu, 31 Mar 2022 19:32 GMT