diff options
author | Josh Blum | 2013-06-06 12:19:36 -0700 |
---|---|---|
committer | Josh Blum | 2013-06-06 12:19:36 -0700 |
commit | ddf0db3d061d62584b1647ba08c46f5a776fb40c (patch) | |
tree | 5bfeaf211ff9a1dd118ac30cba2312a37b07b665 /lib/block_produce.cpp | |
parent | e49fb747ee3c9d60e583ebebcac2066a945b15ec (diff) | |
download | sandhi-ddf0db3d061d62584b1647ba08c46f5a776fb40c.tar.gz sandhi-ddf0db3d061d62584b1647ba08c46f5a776fb40c.tar.bz2 sandhi-ddf0db3d061d62584b1647ba08c46f5a776fb40c.zip |
gras: renamed block member to block actor
Diffstat (limited to 'lib/block_produce.cpp')
-rw-r--r-- | lib/block_produce.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/block_produce.cpp b/lib/block_produce.cpp index c47fec5..7133321 100644 --- a/lib/block_produce.cpp +++ b/lib/block_produce.cpp @@ -9,7 +9,7 @@ using namespace gras; void Block::produce(const size_t which_output, const size_t num_items) { ASSERT(long(num_items) >= 0); //sign bit set? you dont want a negative - (*this)->block->produce(which_output, num_items); + (*this)->block_actor->produce(which_output, num_items); } void Block::produce(const size_t num_items) @@ -17,7 +17,7 @@ void Block::produce(const size_t num_items) const size_t num_outputs = (*this)->worker->get_num_outputs(); for (size_t o = 0; o < num_outputs; o++) { - (*this)->block->produce(o, num_items); + (*this)->block_actor->produce(o, num_items); } } |