summaryrefslogtreecommitdiff
path: root/includes/SmartWriter.h
diff options
context:
space:
mode:
authorNicolas "Pixel" Noble <pixel@nobis-crew.org>2014-08-11 07:32:50 +0200
committerNicolas "Pixel" Noble <pixel@nobis-crew.org>2014-08-11 07:32:50 +0200
commit29a901f599ca16cec7c77a9789a41822e29d1494 (patch)
tree5a2bddcc536ed35faf3542cc82fa99496743824d /includes/SmartWriter.h
parent24c84e9423db42563de21da76efd4637ca2abcce (diff)
Linux build fixes.
Diffstat (limited to 'includes/SmartWriter.h')
-rw-r--r--includes/SmartWriter.h2
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;