input/thread: use std::byte instead of uint8_t
This commit is contained in:
parent
f54210bf68
commit
902cb8efac
|
@ -1,8 +1,7 @@
|
||||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
// Copyright The Music Player Daemon Project
|
// Copyright The Music Player Daemon Project
|
||||||
|
|
||||||
#ifndef MPD_THREAD_INPUT_STREAM_HXX
|
#pragma once
|
||||||
#define MPD_THREAD_INPUT_STREAM_HXX
|
|
||||||
|
|
||||||
#include "InputStream.hxx"
|
#include "InputStream.hxx"
|
||||||
#include "thread/Thread.hxx"
|
#include "thread/Thread.hxx"
|
||||||
|
@ -11,7 +10,7 @@
|
||||||
#include "util/CircularBuffer.hxx"
|
#include "util/CircularBuffer.hxx"
|
||||||
|
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
#include <cstdint>
|
#include <cstddef>
|
||||||
#include <exception>
|
#include <exception>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -42,9 +41,9 @@ class ThreadInputStream : public InputStream {
|
||||||
|
|
||||||
std::exception_ptr postponed_exception;
|
std::exception_ptr postponed_exception;
|
||||||
|
|
||||||
HugeArray<uint8_t> allocation;
|
HugeArray<std::byte> allocation;
|
||||||
|
|
||||||
CircularBuffer<uint8_t> buffer;
|
CircularBuffer<std::byte> buffer;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Shall the stream be closed?
|
* Shall the stream be closed?
|
||||||
|
@ -137,5 +136,3 @@ protected:
|
||||||
private:
|
private:
|
||||||
void ThreadFunc() noexcept;
|
void ThreadFunc() noexcept;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
Loading…
Reference in New Issue