summaryrefslogtreecommitdiff
path: root/lib/tag_handlers.hpp
diff options
context:
space:
mode:
authorJosh Blum2012-10-21 15:53:11 -0700
committerJosh Blum2012-10-21 15:53:11 -0700
commit2a1966462484cf1cb25ea7802cc0d9a8e80096c9 (patch)
tree3ee9d69dae834a460541dca240c14868c9cc8add /lib/tag_handlers.hpp
parent25ec793e687821bd2ac5862fcf934c4c9c0f47b6 (diff)
downloadsandhi-2a1966462484cf1cb25ea7802cc0d9a8e80096c9.tar.gz
sandhi-2a1966462484cf1cb25ea7802cc0d9a8e80096c9.tar.bz2
sandhi-2a1966462484cf1cb25ea7802cc0d9a8e80096c9.zip
getting API read for PMCs
Moved tags API stuff into gr block, specifically the get tags filters. The block class now has a simplified interface for dealing with input and output tags. Dummy typedefs for PMCs Tag class now uses PMCs
Diffstat (limited to 'lib/tag_handlers.hpp')
-rw-r--r--lib/tag_handlers.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tag_handlers.hpp b/lib/tag_handlers.hpp
index 9e20bc0..4e630fb 100644
--- a/lib/tag_handlers.hpp
+++ b/lib/tag_handlers.hpp
@@ -27,7 +27,7 @@ GRAS_FORCE_INLINE void BlockActor::sort_tags(const size_t i)
{
if (not this->input_tags_changed[i]) return;
std::vector<Tag> &tags_i = this->input_tags[i];
- std::sort(tags_i.begin(), tags_i.end(), Tag::offset_compare);
+ std::sort(tags_i.begin(), tags_i.end());
this->input_tags_changed[i] = false;
}