summaryrefslogtreecommitdiff
path: root/gr-blocks/lib/packed_to_unpacked_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'gr-blocks/lib/packed_to_unpacked_impl.h')
-rw-r--r--gr-blocks/lib/packed_to_unpacked_impl.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/gr-blocks/lib/packed_to_unpacked_impl.h b/gr-blocks/lib/packed_to_unpacked_impl.h
index 8e862d3177..b24e11bb93 100644
--- a/gr-blocks/lib/packed_to_unpacked_impl.h
+++ b/gr-blocks/lib/packed_to_unpacked_impl.h
@@ -31,7 +31,7 @@ private:
public:
packed_to_unpacked_impl(unsigned int bits_per_chunk, endianness_t endianness);
- ~packed_to_unpacked_impl();
+ ~packed_to_unpacked_impl() override;
void forecast(int noutput_items, gr_vector_int& ninput_items_required) override;
int general_work(int noutput_items,
@@ -39,7 +39,10 @@ public:
gr_vector_const_void_star& input_items,
gr_vector_void_star& output_items) override;
- bool check_topology(int ninputs, int noutputs) { return ninputs == noutputs; }
+ bool check_topology(int ninputs, int noutputs) override
+ {
+ return ninputs == noutputs;
+ }
};
} /* namespace blocks */