diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2022-06-12 01:59:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-12 01:59:18 +0200 |
commit | 7ea78699a1af646d70d224a35f0bb96b4fd147ce (patch) | |
tree | 46b79562f61cf7e9171827af60e77d9028c44737 | |
parent | Merge pull request #8353 from Docteh/msvc_report_runtime (diff) | |
parent | gdbstub_arch: Add missing virtual destructor (diff) | |
download | yuzu-7ea78699a1af646d70d224a35f0bb96b4fd147ce.tar yuzu-7ea78699a1af646d70d224a35f0bb96b4fd147ce.tar.gz yuzu-7ea78699a1af646d70d224a35f0bb96b4fd147ce.tar.bz2 yuzu-7ea78699a1af646d70d224a35f0bb96b4fd147ce.tar.lz yuzu-7ea78699a1af646d70d224a35f0bb96b4fd147ce.tar.xz yuzu-7ea78699a1af646d70d224a35f0bb96b4fd147ce.tar.zst yuzu-7ea78699a1af646d70d224a35f0bb96b4fd147ce.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/debugger/gdbstub_arch.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/debugger/gdbstub_arch.h b/src/core/debugger/gdbstub_arch.h index 4d039a9f7..2540d6456 100644 --- a/src/core/debugger/gdbstub_arch.h +++ b/src/core/debugger/gdbstub_arch.h @@ -15,6 +15,7 @@ namespace Core { class GDBStubArch { public: + virtual ~GDBStubArch() = default; virtual std::string GetTargetXML() const = 0; virtual std::string RegRead(const Kernel::KThread* thread, size_t id) const = 0; virtual void RegWrite(Kernel::KThread* thread, size_t id, std::string_view value) const = 0; |