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.cpp | |
| 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.cpp')
| -rw-r--r-- | src/core/memory_hook.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/core/memory_hook.cpp b/src/core/memory_hook.cpp new file mode 100644 index 000000000..c61c6c1fb --- /dev/null +++ b/src/core/memory_hook.cpp | |||
| @@ -0,0 +1,11 @@ | |||
| 1 | // Copyright 2018 Citra Emulator Project | ||
| 2 | // Licensed under GPLv2 or any later version | ||
| 3 | // Refer to the license.txt file included. | ||
| 4 | |||
| 5 | #include "core/memory_hook.h" | ||
| 6 | |||
| 7 | namespace Memory { | ||
| 8 | |||
| 9 | MemoryHook::~MemoryHook() = default; | ||
| 10 | |||
| 11 | } // namespace Memory | ||