summaryrefslogtreecommitdiff
path: root/gnuradio-runtime/lib/flat_flowgraph.h
diff options
context:
space:
mode:
authorMarcus Müller <mmueller@gnuradio.org>2020-10-30 18:22:33 +0100
committermormj <34754695+mormj@users.noreply.github.com>2020-11-03 14:07:23 -0500
commit0ddc7dbc95ca6fb4c4a62a3c027104d6dd71fc3b (patch)
treeb454053fdc123711f3011b8a703de38e1d783ba3 /gnuradio-runtime/lib/flat_flowgraph.h
parent1cfd6287635e339b313e1826fdfda23f474c91c8 (diff)
modernization: `override` instead of virtual in all compilation units
Diffstat (limited to 'gnuradio-runtime/lib/flat_flowgraph.h')
-rw-r--r--gnuradio-runtime/lib/flat_flowgraph.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnuradio-runtime/lib/flat_flowgraph.h b/gnuradio-runtime/lib/flat_flowgraph.h
index 37338f6f03..83f5d1b78a 100644
--- a/gnuradio-runtime/lib/flat_flowgraph.h
+++ b/gnuradio-runtime/lib/flat_flowgraph.h
@@ -33,7 +33,7 @@ public:
friend GR_RUNTIME_API flat_flowgraph_sptr make_flat_flowgraph();
// Destruct an arbitrary gr::flat_flowgraph
- virtual ~flat_flowgraph();
+ ~flat_flowgraph() override;
// Wire list of gr::block together in new flat_flowgraph
void setup_connections();