diff options
| author | 2022-06-01 12:30:47 -0400 | |
|---|---|---|
| committer | 2022-06-01 12:30:47 -0400 | |
| commit | a2f6a2480d432da315748e009bf2f36e5b257e64 (patch) | |
| tree | 498bb604367c3ea28399c59fbccbe6768c9fc2cc /src/core/debugger/debugger_interface.h | |
| parent | Merge pull request #8403 from Morph1984/cast (diff) | |
| parent | core/debugger: Define defaulted virtual destructors (diff) | |
| download | yuzu-a2f6a2480d432da315748e009bf2f36e5b257e64.tar.gz yuzu-a2f6a2480d432da315748e009bf2f36e5b257e64.tar.xz yuzu-a2f6a2480d432da315748e009bf2f36e5b257e64.zip | |
Merge pull request #8404 from Morph1984/virtual
core/debugger: Define defaulted virtual destructors
Diffstat (limited to 'src/core/debugger/debugger_interface.h')
| -rw-r--r-- | src/core/debugger/debugger_interface.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/debugger/debugger_interface.h b/src/core/debugger/debugger_interface.h index 0b357fcb5..e6d4c0190 100644 --- a/src/core/debugger/debugger_interface.h +++ b/src/core/debugger/debugger_interface.h | |||
| @@ -24,6 +24,8 @@ enum class DebuggerAction { | |||
| 24 | 24 | ||
| 25 | class DebuggerBackend { | 25 | class DebuggerBackend { |
| 26 | public: | 26 | public: |
| 27 | virtual ~DebuggerBackend() = default; | ||
| 28 | |||
| 27 | /** | 29 | /** |
| 28 | * Can be invoked from a callback to synchronously wait for more data. | 30 | * Can be invoked from a callback to synchronously wait for more data. |
| 29 | * Will return as soon as least one byte is received. Reads up to 4096 bytes. | 31 | * Will return as soon as least one byte is received. Reads up to 4096 bytes. |
| @@ -51,6 +53,8 @@ class DebuggerFrontend { | |||
| 51 | public: | 53 | public: |
| 52 | explicit DebuggerFrontend(DebuggerBackend& backend_) : backend{backend_} {} | 54 | explicit DebuggerFrontend(DebuggerBackend& backend_) : backend{backend_} {} |
| 53 | 55 | ||
| 56 | virtual ~DebuggerFrontend() = default; | ||
| 57 | |||
| 54 | /** | 58 | /** |
| 55 | * Called after the client has successfully connected to the port. | 59 | * Called after the client has successfully connected to the port. |
| 56 | */ | 60 | */ |