RamonUnch / GreenPad

Fork from roytam1 fork from original GreenPad
21 stars 0 forks source link

Remove Object Virtual destructor #96

Closed RamonUnch closed 1 year ago

RamonUnch commented 1 year ago

We do not need virtual destructoor in most of our classes. We only need virtual destructor when we want to delete a derived class using a pointer to the base class.

class Object -> NO virtual destructor class Command -> Virtual destructor class TextFileR/WPimpl -> Virtual destructor

The exe is ~4KB smaller with this patch, and takes 5% less memory

textfile.cpp