Просмотр исходного кода

audio_manager: Remove unused forward declarations

Allows us to get rid of some unnecessary forward declarations and
includes.
Lioncash 3 лет назад
Родитель
Сommit
da0fd51642
2 измененных файлов с 0 добавлено и 10 удалено
  1. 0 2
      src/audio_core/audio_manager.cpp
  2. 0 8
      src/audio_core/audio_manager.h

+ 0 - 2
src/audio_core/audio_manager.cpp

@@ -1,9 +1,7 @@
 // SPDX-FileCopyrightText: Copyright 2022 yuzu Emulator Project
 // SPDX-FileCopyrightText: Copyright 2022 yuzu Emulator Project
 // SPDX-License-Identifier: GPL-2.0-or-later
 // SPDX-License-Identifier: GPL-2.0-or-later
 
 
-#include "audio_core/audio_in_manager.h"
 #include "audio_core/audio_manager.h"
 #include "audio_core/audio_manager.h"
-#include "audio_core/audio_out_manager.h"
 #include "core/core.h"
 #include "core/core.h"
 
 
 namespace AudioCore {
 namespace AudioCore {

+ 0 - 8
src/audio_core/audio_manager.h

@@ -14,14 +14,6 @@
 
 
 namespace AudioCore {
 namespace AudioCore {
 
 
-namespace AudioOut {
-class Manager;
-}
-
-namespace AudioIn {
-class Manager;
-}
-
 /**
 /**
  * The AudioManager's main purpose is to wait for buffer events for the audio in and out managers,
  * The AudioManager's main purpose is to wait for buffer events for the audio in and out managers,
  * and call an associated callback to release buffers.
  * and call an associated callback to release buffers.