DolphinNoGUI: Make classes final

This commit is contained in:
Dr. Dystopia 2025-04-20 18:03:57 +02:00
parent c37933932d
commit ec1d659363
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@
namespace
{
class PlatformHeadless : public Platform
class PlatformHeadless final : public Platform
{
public:
void SetTitle(const std::string& title) override;

View File

@ -17,7 +17,7 @@
namespace
{
class PlatformWin32 : public Platform
class PlatformWin32 final : public Platform
{
public:
~PlatformWin32() override;