Merge branch 'fix-streamfilters' of https://github.com/nmaier/aria2 into nmaier-fix-streamfilters

pull/106/head
Tatsuhiro Tsujikawa 2013-07-06 14:39:57 +09:00
commit cce5b3206a
2 changed files with 2 additions and 2 deletions

View File

@ -75,7 +75,7 @@ public:
return bytesProcessed_; return bytesProcessed_;
} }
virtual bool installDelegate(const std::shared_ptr<StreamFilter>& filter) virtual bool installDelegate(const std::unique_ptr<StreamFilter> filter) override
{ {
return false; return false;
} }

View File

@ -75,7 +75,7 @@ public:
return bytesProcessed_; return bytesProcessed_;
} }
virtual bool installDelegate(const std::shared_ptr<StreamFilter>& filter) virtual bool installDelegate(const std::unique_ptr<StreamFilter> filter) override
{ {
return false; return false;
} }