diff options
| author | bunnei <bunneidev@gmail.com> | 2018-09-11 23:13:29 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-09-11 23:13:29 -0400 |
| commit | c2451504396bfb3476baa23ad2460d186c33d3ac (patch) | |
| tree | fb469ecb74fc29f0372400e42c9235b982a612d2 /src/core/hle/service/audio/hwopus.cpp | |
| parent | 89825766ee5a1d7eec5f4bda24f47c93d7ae1da9 (diff) | |
| parent | c243bc09d4d891f48643c18246a064548cefe889 (diff) | |
Merge pull request #1300 from lioncash/audio
service/audio: Replace includes with forward declarations where applicable
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" |
