You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since the NewEncoder & NewDecoder factory functions return a Transcoder object, this class needs to have a virtual destructor in order for the concrete object to be deleted properly and not leak.
This simply requires adding the following line:
virtual ~Transcoder() = default;
The text was updated successfully, but these errors were encountered:
Since the NewEncoder & NewDecoder factory functions return a Transcoder object, this class needs to have a virtual destructor in order for the concrete object to be deleted properly and not leak.
This simply requires adding the following line:
virtual ~Transcoder() = default;
The text was updated successfully, but these errors were encountered: