diff options
Diffstat (limited to 'core/voice.h')
-rw-r--r-- | core/voice.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/voice.h b/core/voice.h index 57ee7b01..9d74ff6b 100644 --- a/core/voice.h +++ b/core/voice.h @@ -6,12 +6,12 @@ #include <bitset> #include <chrono> #include <memory> +#include <optional> #include <stddef.h> #include <string> #include "albyte.h" #include "almalloc.h" -#include "aloptional.h" #include "alspan.h" #include "bufferline.h" #include "buffer_storage.h" @@ -270,7 +270,7 @@ struct Voice { void prepare(DeviceBase *device); - static void InitMixer(al::optional<std::string> resampler); + static void InitMixer(std::optional<std::string> resampler); DEF_NEWDEL(Voice) }; |