summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/audio
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-04-04 18:16:56 +0200
committerLioncash <mathew1800@gmail.com>2019-04-04 18:19:44 +0200
commit5b0a9f8ba8452373a4bf0a84d1c5c3734bd04d3c (patch)
tree0d7b041cdfabd0e7317b3dc28d52f0ebf9d0445e /src/core/hle/service/audio
parentMerge pull request #2330 from lioncash/pragma (diff)
downloadyuzu-5b0a9f8ba8452373a4bf0a84d1c5c3734bd04d3c.tar
yuzu-5b0a9f8ba8452373a4bf0a84d1c5c3734bd04d3c.tar.gz
yuzu-5b0a9f8ba8452373a4bf0a84d1c5c3734bd04d3c.tar.bz2
yuzu-5b0a9f8ba8452373a4bf0a84d1c5c3734bd04d3c.tar.lz
yuzu-5b0a9f8ba8452373a4bf0a84d1c5c3734bd04d3c.tar.xz
yuzu-5b0a9f8ba8452373a4bf0a84d1c5c3734bd04d3c.tar.zst
yuzu-5b0a9f8ba8452373a4bf0a84d1c5c3734bd04d3c.zip
Diffstat (limited to 'src/core/hle/service/audio')
-rw-r--r--src/core/hle/service/audio/audin_u.cpp4
-rw-r--r--src/core/hle/service/audio/audrec_u.cpp4
2 files changed, 0 insertions, 8 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") {
diff --git a/src/core/hle/service/audio/audrec_u.cpp b/src/core/hle/service/audio/audrec_u.cpp
index 6956a2e64..1a5aed9ed 100644
--- a/src/core/hle/service/audio/audrec_u.cpp
+++ b/src/core/hle/service/audio/audrec_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/audrec_u.h"
namespace Service::Audio {
@@ -30,7 +27,6 @@ public:
RegisterHandlers(functions);
}
- ~IFinalOutputRecorder() = default;
};
AudRecU::AudRecU() : ServiceFramework("audrec:u") {