Either make Util::~Util private or change Util to not be a singleton
The dtor Util::~Util is public, is a clear bug in the implementation because Util is implemented as a singleton.
We can fix this either way:
- Make
Util::~Utilprivate so that it cannot be called. - Change
Utilto not be a singleton.