audio_manager: Forward declare result type

Moves the include into the cpp file to lessen header dependencies.
This commit is contained in:
Lioncash 2022-09-21 09:43:53 -04:00
parent 75d6fe3669
commit 00616c7ad8
2 changed files with 3 additions and 1 deletions

View File

@ -3,6 +3,7 @@
#include "audio_core/audio_manager.h"
#include "core/core.h"
#include "core/hle/service/audio/errors.h"
namespace AudioCore {

View File

@ -10,7 +10,8 @@
#include <thread>
#include "audio_core/audio_event.h"
#include "core/hle/service/audio/errors.h"
union Result;
namespace AudioCore {