diff options
| author | Lioncash <mathew1800@gmail.com> | 2022-09-21 09:43:53 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2022-09-21 09:43:59 -0400 |
| commit | 00616c7ad856a05189eb1963fef85be361bb9527 (patch) | |
| tree | ca222316a9bf34491e0467473b8c0f765991cea3 /src/audio_core/audio_manager.h | |
| parent | 75d6fe3669c5fcbb437247c2c115f401ebb5c30e (diff) | |
audio_manager: Forward declare result type
Moves the include into the cpp file to lessen header dependencies.
Diffstat (limited to 'src/audio_core/audio_manager.h')
| -rw-r--r-- | src/audio_core/audio_manager.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/audio_core/audio_manager.h b/src/audio_core/audio_manager.h index 6c76c36a7..abf077de4 100644 --- a/src/audio_core/audio_manager.h +++ b/src/audio_core/audio_manager.h @@ -10,7 +10,8 @@ #include <thread> #include "audio_core/audio_event.h" -#include "core/hle/service/audio/errors.h" + +union Result; namespace AudioCore { |
