diff options
author | Chris Robinson <[email protected]> | 2021-04-27 08:39:17 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2021-04-27 08:39:17 -0700 |
commit | d06209ef5a4cf3de196efce8f3987f04af577364 (patch) | |
tree | b5a0c1861d7537b5f071a568a3ff5678293437a8 /alc/effects/null.cpp | |
parent | ff380298e4086490584707b8ffde44c5ad64830f (diff) |
Update includes
Diffstat (limited to 'alc/effects/null.cpp')
-rw-r--r-- | alc/effects/null.cpp | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/alc/effects/null.cpp b/alc/effects/null.cpp index f838a367..1413909f 100644 --- a/alc/effects/null.cpp +++ b/alc/effects/null.cpp @@ -1,12 +1,17 @@ #include "config.h" -#include "alcmain.h" -#include "alcontext.h" +#include <stddef.h> + #include "almalloc.h" #include "alspan.h" +#include "core/bufferline.h" #include "effects/base.h" -#include "effectslot.h" +#include "intrusive_ptr.h" + +struct ContextBase; +struct DeviceBase; +struct EffectSlot; namespace { |