diff options
Diffstat (limited to 'includes')
-rw-r--r-- | includes/SmartWriter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/SmartWriter.h b/includes/SmartWriter.h index d8baf27..b237f29 100644 --- a/includes/SmartWriter.h +++ b/includes/SmartWriter.h @@ -11,7 +11,7 @@ class SmartWriter : public Filter { SmartWriter(IO<Handle> h) : Filter(h) { AAssert(h->canWrite(), "SmartWriter can't write"); m_name.set("SmartWriter(%s)", h->getName()); } virtual ssize_t write(const void * buf, size_t count) throw (GeneralException) override; virtual const char * getName() override { return m_name.to_charp(); } - virtual void close() override; + virtual void close() throw (GeneralException) override; private: SmartWriterTask * m_writerTask = NULL; String m_name; |