fs/io/BufferedOutputStream: add noexcept
This commit is contained in:
parent
1cfc0cb874
commit
afdaaba045
@ -53,7 +53,7 @@ class BufferedOutputStream {
|
||||
DynamicFifoBuffer<char> buffer;
|
||||
|
||||
public:
|
||||
explicit BufferedOutputStream(OutputStream &_os)
|
||||
explicit BufferedOutputStream(OutputStream &_os) noexcept
|
||||
:os(_os), buffer(32768) {}
|
||||
|
||||
void Write(const void *data, size_t size);
|
||||
|
Loading…
Reference in New Issue
Block a user