diff options
| author | Lioncash <mathew1800@gmail.com> | 2019-04-04 12:16:56 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2019-04-04 12:19:44 -0400 |
| commit | 5b0a9f8ba8452373a4bf0a84d1c5c3734bd04d3c (patch) | |
| tree | 0d7b041cdfabd0e7317b3dc28d52f0ebf9d0445e /src/core/arm/unicorn | |
| parent | 7c31661869156d00241e8aebddc9718b918f57d7 (diff) | |
core: Add missing override specifiers where applicable
Applies the override specifier where applicable. In the case of
destructors that are defaulted in their definition, they can
simply be removed.
This also removes the unnecessary inclusions being done in audin_u and
audrec_u, given their close proximity.
Diffstat (limited to 'src/core/arm/unicorn')
| -rw-r--r-- | src/core/arm/unicorn/arm_unicorn.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/arm/unicorn/arm_unicorn.h b/src/core/arm/unicorn/arm_unicorn.h index dbd6955ea..f313b7394 100644 --- a/src/core/arm/unicorn/arm_unicorn.h +++ b/src/core/arm/unicorn/arm_unicorn.h @@ -18,7 +18,7 @@ namespace Core { class ARM_Unicorn final : public ARM_Interface { public: explicit ARM_Unicorn(Timing::CoreTiming& core_timing); - ~ARM_Unicorn(); + ~ARM_Unicorn() override; void MapBackingMemory(VAddr address, std::size_t size, u8* memory, Kernel::VMAPermission perms) override; |
