summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Software/SWmain.cpp
diff options
context:
space:
mode:
authorJordan Woyak <jordan.woyak@gmail.com>2025-06-07 17:55:14 -0500
committerGitHub <noreply@github.com>2025-06-07 17:55:14 -0500
commit65f3ba70f5a88a25eeb7fef143b8e46093e30a7a (patch)
treea550dbcced888ddc1fe57bbe575373d9c0fb3f46 /Source/Core/VideoBackends/Software/SWmain.cpp
parentec52a7496723f9b59c37003ac0296e6a2f7e911c (diff)
parentf240e20e3f8250d279255fe48ba6ab351b581679 (diff)
Merge pull request #13522 from tygyh/Enforce-overriding-destructor-style-Core&UnitTests
Core & UnitTests: Make overriding explicit and remove redundant virtual specifiers on overriding destructors
Diffstat (limited to 'Source/Core/VideoBackends/Software/SWmain.cpp')
-rw-r--r--Source/Core/VideoBackends/Software/SWmain.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoBackends/Software/SWmain.cpp b/Source/Core/VideoBackends/Software/SWmain.cpp
index 6878075dad..51c714ad2d 100644
--- a/Source/Core/VideoBackends/Software/SWmain.cpp
+++ b/Source/Core/VideoBackends/Software/SWmain.cpp
@@ -29,7 +29,7 @@ class PerfQuery : public PerfQueryBase
{
public:
PerfQuery() {}
- ~PerfQuery() {}
+ ~PerfQuery() override {}
void EnableQuery(PerfQueryGroup type) override {}
void DisableQuery(PerfQueryGroup type) override {}
void ResetQuery() override { EfbInterface::ResetPerfQuery(); }