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/hle/service/audio/audin_u.cpp | |
| 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/hle/service/audio/audin_u.cpp')
| -rw-r--r-- | src/core/hle/service/audio/audin_u.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/core/hle/service/audio/audin_u.cpp b/src/core/hle/service/audio/audin_u.cpp index 088410564..e5daefdde 100644 --- a/src/core/hle/service/audio/audin_u.cpp +++ b/src/core/hle/service/audio/audin_u.cpp @@ -2,9 +2,6 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. -#include "common/logging/log.h" -#include "core/hle/ipc_helpers.h" -#include "core/hle/kernel/hle_ipc.h" #include "core/hle/service/audio/audin_u.h" namespace Service::Audio { @@ -33,7 +30,6 @@ public: RegisterHandlers(functions); } - ~IAudioIn() = default; }; AudInU::AudInU() : ServiceFramework("audin:u") { |
