summaryrefslogtreecommitdiff
path: root/gr-blocks/lib/head_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'gr-blocks/lib/head_impl.h')
-rw-r--r--gr-blocks/lib/head_impl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gr-blocks/lib/head_impl.h b/gr-blocks/lib/head_impl.h
index a973dd6be9..5332c33d95 100644
--- a/gr-blocks/lib/head_impl.h
+++ b/gr-blocks/lib/head_impl.h
@@ -24,10 +24,10 @@ private:
public:
head_impl(size_t sizeof_stream_item, uint64_t nitems);
- ~head_impl();
+ ~head_impl() override;
- void reset() { d_ncopied_items = 0; }
- void set_length(uint64_t nitems) { d_nitems = nitems; }
+ void reset() override { d_ncopied_items = 0; }
+ void set_length(uint64_t nitems) override { d_nitems = nitems; }
int work(int noutput_items,
gr_vector_const_void_star& input_items,