aboutsummaryrefslogtreecommitdiff
path: root/src/core/memory_hook.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-05-03 15:09:14 -0400
committerGitHub <noreply@github.com>2018-05-03 15:09:14 -0400
commit9eccb5de9d8f034442f8255fa6b17f939fe9a00d (patch)
treef4b7929059c303f39032c5938e6d6f9b198009ca /src/core/memory_hook.h
parent8c665d6752e8b8726e8e78560bb1ed6dc4253305 (diff)
parent732a77d0e83746021ae23b90eab1221ccc1f9bad (diff)
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.h2
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 {
*/
class MemoryHook {
public:
- virtual ~MemoryHook() = default;
+ virtual ~MemoryHook();
virtual boost::optional<bool> IsValidAddress(VAddr addr) = 0;