diff options
author | Ethan Trewhitt <ethan@trewhitt.org> | 2014-02-21 21:35:26 -0500 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2014-02-22 14:03:05 -0800 |
commit | 73767f0d28f805b10a96d5a9275ba8c659b1c656 (patch) | |
tree | fd016c1d21a8ea187d2b99cd3398716f5640ab69 /gnuradio-runtime/lib/block_executor.cc | |
parent | 6c139b8908b2edaaf6d5d9634b56683eecd74ac2 (diff) |
Removed old code
Diffstat (limited to 'gnuradio-runtime/lib/block_executor.cc')
-rw-r--r-- | gnuradio-runtime/lib/block_executor.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gnuradio-runtime/lib/block_executor.cc b/gnuradio-runtime/lib/block_executor.cc index d3718202d1..9be8eaa48d 100644 --- a/gnuradio-runtime/lib/block_executor.cc +++ b/gnuradio-runtime/lib/block_executor.cc @@ -121,7 +121,6 @@ namespace gr { else { for(t = rtags.begin(); t != rtags.end(); t++) { tag_t new_tag = *t; - //new_tag.offset *= rrate; new_tag.offset = ((double)new_tag.offset * rrate) + 0.5; for(int o = 0; o < d->noutputs(); o++) d->output(o)->add_item_tag(new_tag); @@ -141,7 +140,6 @@ namespace gr { std::vector<tag_t>::iterator t; for(t = rtags.begin(); t != rtags.end(); t++) { tag_t new_tag = *t; - //new_tag.offset *= rrate; new_tag.offset = ((double)new_tag.offset * rrate) + 0.5; d->output(i)->add_item_tag(new_tag); } |