From ec1d6593637ae7ae41c49cb66469df387a7ab150 Mon Sep 17 00:00:00 2001 From: "Dr. Dystopia" Date: Sun, 20 Apr 2025 18:03:57 +0200 Subject: [PATCH] DolphinNoGUI: Make classes final --- Source/Core/DolphinNoGUI/PlatformHeadless.cpp | 2 +- Source/Core/DolphinNoGUI/PlatformWin32.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/DolphinNoGUI/PlatformHeadless.cpp b/Source/Core/DolphinNoGUI/PlatformHeadless.cpp index 2f6ea2e7ac..9bf3383032 100644 --- a/Source/Core/DolphinNoGUI/PlatformHeadless.cpp +++ b/Source/Core/DolphinNoGUI/PlatformHeadless.cpp @@ -10,7 +10,7 @@ namespace { -class PlatformHeadless : public Platform +class PlatformHeadless final : public Platform { public: void SetTitle(const std::string& title) override; diff --git a/Source/Core/DolphinNoGUI/PlatformWin32.cpp b/Source/Core/DolphinNoGUI/PlatformWin32.cpp index 01575ecca5..5ba9afb5e1 100644 --- a/Source/Core/DolphinNoGUI/PlatformWin32.cpp +++ b/Source/Core/DolphinNoGUI/PlatformWin32.cpp @@ -17,7 +17,7 @@ namespace { -class PlatformWin32 : public Platform +class PlatformWin32 final : public Platform { public: ~PlatformWin32() override;