diff options
| author | 2018-05-03 15:09:14 -0400 | |
|---|---|---|
| committer | 2018-05-03 15:09:14 -0400 | |
| commit | 9eccb5de9d8f034442f8255fa6b17f939fe9a00d (patch) | |
| tree | f4b7929059c303f39032c5938e6d6f9b198009ca /src/core/memory_hook.h | |
| parent | Merge pull request #433 from lioncash/logging (diff) | |
| parent | memory_hook: Default virtual destructor in the cpp file (diff) | |
| download | yuzu-9eccb5de9d8f034442f8255fa6b17f939fe9a00d.tar.gz yuzu-9eccb5de9d8f034442f8255fa6b17f939fe9a00d.tar.xz yuzu-9eccb5de9d8f034442f8255fa6b17f939fe9a00d.zip | |
Merge pull request #434 from lioncash/vdtor
memory_hook: Default virtual destructor in the cpp file
Diffstat (limited to 'src/core/memory_hook.h')
| -rw-r--r-- | src/core/memory_hook.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/memory_hook.h b/src/core/memory_hook.h index feebd850a..e8ea19333 100644 --- a/src/core/memory_hook.h +++ b/src/core/memory_hook.h | |||
| @@ -23,7 +23,7 @@ namespace Memory { | |||
| 23 | */ | 23 | */ |
| 24 | class MemoryHook { | 24 | class MemoryHook { |
| 25 | public: | 25 | public: |
| 26 | virtual ~MemoryHook() = default; | 26 | virtual ~MemoryHook(); |
| 27 | 27 | ||
| 28 | virtual boost::optional<bool> IsValidAddress(VAddr addr) = 0; | 28 | virtual boost::optional<bool> IsValidAddress(VAddr addr) = 0; |
| 29 | 29 | ||