From f0b23b84f169777328b798b8bcb15b86b6e5733b Mon Sep 17 00:00:00 2001 From: csoler Date: Sun, 31 Oct 2021 12:01:44 +0100 Subject: [PATCH] added missing override in pqithreadstreamer --- libretroshare/src/pqi/pqithreadstreamer.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libretroshare/src/pqi/pqithreadstreamer.h b/libretroshare/src/pqi/pqithreadstreamer.h index 7ba1690c8..5b6fa3763 100644 --- a/libretroshare/src/pqi/pqithreadstreamer.h +++ b/libretroshare/src/pqi/pqithreadstreamer.h @@ -31,8 +31,8 @@ public: pqithreadstreamer(PQInterface *parent, RsSerialiser *rss, const RsPeerId& peerid, BinInterface *bio_in, int bio_flagsin); // from pqistreamer - virtual bool RecvItem(RsItem *item); - virtual int tick(); + virtual bool RecvItem(RsItem *item) override; + virtual int tick() override; protected: void threadTick() override; /// @see RsTickingThread