Commit afdaaba0 authored by Max Kellermann's avatar Max Kellermann

fs/io/BufferedOutputStream: add `noexcept`

parent 1cfc0cb8
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment