diff options
author | Marcus Müller <marcus@hostalia.de> | 2017-06-24 17:43:22 +0200 |
---|---|---|
committer | Marcus Müller <marcus@hostalia.de> | 2017-06-24 17:44:53 +0200 |
commit | 963c376ba23fbcb7c4041b8ce5ff1d30b33af36e (patch) | |
tree | a2393332a049616d240323d236abba203627ce66 /gnuradio-runtime/lib/block_executor.cc | |
parent | b57a37f7c676542f08a27d3f141f4d9ed2ab1132 (diff) |
fix: can't pass non-enum integer as enum parameter (#1337)
Diffstat (limited to 'gnuradio-runtime/lib/block_executor.cc')
-rw-r--r-- | gnuradio-runtime/lib/block_executor.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnuradio-runtime/lib/block_executor.cc b/gnuradio-runtime/lib/block_executor.cc index 585e65fc6e..5c23df39a5 100644 --- a/gnuradio-runtime/lib/block_executor.cc +++ b/gnuradio-runtime/lib/block_executor.cc @@ -1,6 +1,6 @@ /* -*- c++ -*- */ /* - * Copyright 2004,2008-2010,2013 Free Software Foundation, Inc. + * Copyright 2004,2008-2010,2013,2017 Free Software Foundation, Inc. * * This file is part of GNU Radio * @@ -103,8 +103,8 @@ namespace gr { switch(policy) { case block::TPP_DONT: + case block::TPP_CUSTOM: return true; - break; case block::TPP_ALL_TO_ALL: // every tag on every input propogates to everyone downstream for(int i = 0; i < d->ninputs(); i++) { |