Commit 30832ab3 authored by Max Kellermann's avatar Max Kellermann

input/InputStream: add "noexcept" to constructor

parent d20b545a
......@@ -96,7 +96,7 @@ private:
std::string mime;
public:
InputStream(const char *_uri, Mutex &_mutex, Cond &_cond)
InputStream(const char *_uri, Mutex &_mutex, Cond &_cond) noexcept
:uri(_uri),
mutex(_mutex), cond(_cond) {
assert(_uri != nullptr);
......
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