Commit cfe22502 authored by Max Kellermann's avatar Max Kellermann

fs/io/StdioOutputStream: add `noexcept`

parent d77b0c7d
......@@ -39,7 +39,7 @@ class StdioOutputStream final : public OutputStream {
FILE *const file;
public:
explicit StdioOutputStream(FILE *_file):file(_file) {}
explicit StdioOutputStream(FILE *_file) noexcept:file(_file) {}
/* virtual methods from class OutputStream */
void Write(const void *data, size_t size) override {
......
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