summaryrefslogtreecommitdiff
path: root/src/audio/include/chunk.hpp
diff options
context:
space:
mode:
authorjacqueline <me@jacqueline.id.au>2022-12-04 12:52:22 +1100
committerjacqueline <me@jacqueline.id.au>2022-12-04 12:52:22 +1100
commite0b2562cc4e0e5ae73efacddf68b83bd9fbb6acb (patch)
treed90a78e35009fac75e393f89df475860e8cb4f80 /src/audio/include/chunk.hpp
parentbf6f9cea20692501d92ac9730359e01edc89de70 (diff)
downloadtangara-fw-e0b2562cc4e0e5ae73efacddf68b83bd9fbb6acb.tar.gz
fix missing std::
Diffstat (limited to 'src/audio/include/chunk.hpp')
-rw-r--r--src/audio/include/chunk.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audio/include/chunk.hpp b/src/audio/include/chunk.hpp
index 0cbe8d5c..aadcbbdb 100644
--- a/src/audio/include/chunk.hpp
+++ b/src/audio/include/chunk.hpp
@@ -79,7 +79,7 @@ class ChunkReader {
* will place the message at the start of the working_buffer and then return.
*/
auto ReadChunkFromStream(
- std::function<std::optional<size_t>(cpp::span<std::byte>)> callback,
+ std::function<std::optional<std::size_t>(cpp::span<std::byte>)> callback,
TickType_t max_wait) -> ChunkReadResult;
private: