summaryrefslogtreecommitdiffstats
path: root/src/core/debugger/gdbstub.h
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2022-06-01 18:30:47 +0200
committerGitHub <noreply@github.com>2022-06-01 18:30:47 +0200
commita2f6a2480d432da315748e009bf2f36e5b257e64 (patch)
tree498bb604367c3ea28399c59fbccbe6768c9fc2cc /src/core/debugger/gdbstub.h
parentMerge pull request #8403 from Morph1984/cast (diff)
parentcore/debugger: Define defaulted virtual destructors (diff)
downloadyuzu-a2f6a2480d432da315748e009bf2f36e5b257e64.tar
yuzu-a2f6a2480d432da315748e009bf2f36e5b257e64.tar.gz
yuzu-a2f6a2480d432da315748e009bf2f36e5b257e64.tar.bz2
yuzu-a2f6a2480d432da315748e009bf2f36e5b257e64.tar.lz
yuzu-a2f6a2480d432da315748e009bf2f36e5b257e64.tar.xz
yuzu-a2f6a2480d432da315748e009bf2f36e5b257e64.tar.zst
yuzu-a2f6a2480d432da315748e009bf2f36e5b257e64.zip
Diffstat (limited to 'src/core/debugger/gdbstub.h')
-rw-r--r--src/core/debugger/gdbstub.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/debugger/gdbstub.h b/src/core/debugger/gdbstub.h
index b93a3a511..e58d60719 100644
--- a/src/core/debugger/gdbstub.h
+++ b/src/core/debugger/gdbstub.h
@@ -19,7 +19,7 @@ class System;
class GDBStub : public DebuggerFrontend {
public:
explicit GDBStub(DebuggerBackend& backend, Core::System& system);
- ~GDBStub();
+ ~GDBStub() override;
void Connected() override;
void Stopped(Kernel::KThread* thread) override;