diff options
Diffstat (limited to 'core/voice.h')
-rw-r--r-- | core/voice.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/core/voice.h b/core/voice.h index 9d74ff6b..a599eda8 100644 --- a/core/voice.h +++ b/core/voice.h @@ -5,12 +5,11 @@ #include <atomic> #include <bitset> #include <chrono> +#include <cstddef> #include <memory> #include <optional> -#include <stddef.h> #include <string> -#include "albyte.h" #include "almalloc.h" #include "alspan.h" #include "bufferline.h" @@ -100,7 +99,7 @@ struct VoiceBufferItem { uint mLoopStart{0u}; uint mLoopEnd{0u}; - al::byte *mSamples{nullptr}; + std::byte *mSamples{nullptr}; }; |