From 1cfd6287635e339b313e1826fdfda23f474c91c8 Mon Sep 17 00:00:00 2001
From: Thomas Habets <thomas@habets.se>
Date: Wed, 26 Aug 2020 21:09:02 +0100
Subject: Add `override` for common virtual function overrides

Mostly done with:

```
find -name "*_impl.h" | xargs sed -i -r '/(void forecast|int work|int general_work|bool check_topology)\(/{:back /\)/b nxt;N;b back;:nxt s/\)$|\)(;)/) override\1/g}'
```

Then I removed an incorrect `work` that this found.
---
 gr-analog/lib/cpfsk_bc_impl.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'gr-analog/lib/cpfsk_bc_impl.h')

diff --git a/gr-analog/lib/cpfsk_bc_impl.h b/gr-analog/lib/cpfsk_bc_impl.h
index 067ca5a66d..a8392da248 100644
--- a/gr-analog/lib/cpfsk_bc_impl.h
+++ b/gr-analog/lib/cpfsk_bc_impl.h
@@ -33,7 +33,7 @@ public:
 
     int work(int noutput_items,
              gr_vector_const_void_star& input_items,
-             gr_vector_void_star& output_items);
+             gr_vector_void_star& output_items) override;
 };
 
 } /* namespace analog */
-- 
cgit v1.2.3