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
Add a virtual destructor to cprover_exception_baset
While exceptions under normal usage scenarios don't need a virtual destructor
(when an exception is thrown, it is the runtimes responsibility to properly
destroy it, and it does know the type of the exception at the point where it's
thrown), it is just generally good practice to have virtual destructors in base
classes to accomodate for situations where a polymorphic destruction may be
needed.
0 commit comments