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/hwopus.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/hwopus.cpp')
| -rw-r--r-- | src/core/hle/service/audio/hwopus.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/hle/service/audio/hwopus.cpp b/src/core/hle/service/audio/hwopus.cpp index 341bfda42..668fef145 100644 --- a/src/core/hle/service/audio/hwopus.cpp +++ b/src/core/hle/service/audio/hwopus.cpp @@ -3,7 +3,12 @@ // Refer to the license.txt file included. #include <cstring> +#include <memory> +#include <vector> + #include <opus.h> + +#include "common/common_funcs.h" #include "common/logging/log.h" #include "core/hle/ipc_helpers.h" #include "core/hle/kernel/hle_ipc.h" |
