diff options
author | Marcus Müller <Marcus.Mueller@ettus.com> | 2015-04-13 20:37:42 +0200 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2015-04-14 07:37:53 -0700 |
commit | a86eb4188da69f06116991a29fbf1b28dfb4a5a5 (patch) | |
tree | e208c8597f3dc08da301012dc2c2a2e5f96097bc /gnuradio-runtime/lib/flat_flowgraph.h | |
parent | f1f97b05f42040d4df931e81d79bd20c0b4f920e (diff) |
Fixed non-virtual dtor pseudoissue in [flat_]flowgraph
Diffstat (limited to 'gnuradio-runtime/lib/flat_flowgraph.h')
-rw-r--r-- | gnuradio-runtime/lib/flat_flowgraph.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnuradio-runtime/lib/flat_flowgraph.h b/gnuradio-runtime/lib/flat_flowgraph.h index fad14279ae..d0b3a3ae64 100644 --- a/gnuradio-runtime/lib/flat_flowgraph.h +++ b/gnuradio-runtime/lib/flat_flowgraph.h @@ -45,7 +45,7 @@ namespace gr { friend GR_RUNTIME_API flat_flowgraph_sptr make_flat_flowgraph(); // Destruct an arbitrary gr::flat_flowgraph - ~flat_flowgraph(); + virtual ~flat_flowgraph(); // Wire list of gr::block together in new flat_flowgraph void setup_connections(); |