chore: Interface.h, use default for deconstructor

This commit is contained in:
sithlord48
2025-05-01 10:48:57 -04:00
committed by Nick Bolton
parent 6aabb1e858
commit 57cb7227a4

View File

@ -18,7 +18,5 @@ class IInterface
{
public:
//! Interface destructor does nothing
virtual ~IInterface()
{
}
virtual ~IInterface() = default;
};