[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] [gnuradio] 03/04: Removed old code
From: |
git |
Subject: |
[Commit-gnuradio] [gnuradio] 03/04: Removed old code |
Date: |
Sat, 22 Feb 2014 22:27:31 +0000 (UTC) |
This is an automated email from the git hooks/post-receive script.
jcorgan pushed a commit to branch maint
in repository gnuradio.
commit 73767f0d28f805b10a96d5a9275ba8c659b1c656
Author: Ethan Trewhitt <address@hidden>
Date: Fri Feb 21 21:35:26 2014 -0500
Removed old code
---
gnuradio-runtime/lib/block_executor.cc | 2 --
1 file changed, 2 deletions(-)
diff --git a/gnuradio-runtime/lib/block_executor.cc
b/gnuradio-runtime/lib/block_executor.cc
index d371820..9be8eaa 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);
}