Menu ▾ ▴

#24 Add virtual destructors

Sprint 1
open
lo (13)
100
½
2017-09-29
2017-09-29
No

Add declaration of virtual destructors to each "interface" in the projects. For example:

class ILogger: public IUnknown
{
public:
  virtual ~ILogger()
  {
  }
...
};

and so on in another classes.

Discussion