1
0
mirror of https://github.com/NoelFB/blah.git synced 2025-04-08 00:56:04 +08:00

platform was missing virtual destructor

This commit is contained in:
Noel Berry 2022-02-12 23:15:12 -08:00
parent 7477cda527
commit 83edcb06c2

View File

@ -12,6 +12,8 @@ namespace Blah
{
public:
virtual ~Platform() = default;
// Initialize the Graphics
virtual bool init(const Config& config) = 0;