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 namespace
{ {
class PlatformHeadless : public Platform class PlatformHeadless final : public Platform
{ {
public: public:
void SetTitle(const std::string& title) override; void SetTitle(const std::string& title) override;

View File

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