diff options
| author | Lioncash <mathew1800@gmail.com> | 2018-09-11 21:45:20 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2018-09-11 21:54:33 -0400 |
| commit | c243bc09d4d891f48643c18246a064548cefe889 (patch) | |
| tree | 3145292ce0871f43897e4ee778fc974631b051a4 /src/core/hle/service/audio/audren_u.cpp | |
| parent | 1470b85af9027106f16c888bb7f6a97d44fad304 (diff) | |
service/audio: Replace includes with forward declarations where applicable
A few headers were including other headers when a forward declaration
can be used instead, allowing the include to be moved to the cpp file.
Diffstat (limited to 'src/core/hle/service/audio/audren_u.cpp')
| -rw-r--r-- | src/core/hle/service/audio/audren_u.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/hle/service/audio/audren_u.cpp b/src/core/hle/service/audio/audren_u.cpp index 3870bec65..e84c4fa2b 100644 --- a/src/core/hle/service/audio/audren_u.cpp +++ b/src/core/hle/service/audio/audren_u.cpp @@ -2,12 +2,14 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. +#include <algorithm> #include <array> +#include <memory> +#include "audio_core/audio_renderer.h" #include "common/alignment.h" +#include "common/common_funcs.h" #include "common/logging/log.h" -#include "core/core_timing.h" -#include "core/core_timing_util.h" #include "core/hle/ipc_helpers.h" #include "core/hle/kernel/event.h" #include "core/hle/kernel/hle_ipc.h" |
