diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2014-08-11 07:32:50 +0200 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2014-08-11 07:32:50 +0200 |
commit | 29a901f599ca16cec7c77a9789a41822e29d1494 (patch) | |
tree | 5a2bddcc536ed35faf3542cc82fa99496743824d /includes | |
parent | 24c84e9423db42563de21da76efd4637ca2abcce (diff) |
Linux build fixes.
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; |