From 2a1966462484cf1cb25ea7802cc0d9a8e80096c9 Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Sun, 21 Oct 2012 15:53:11 -0700 Subject: 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 --- lib/tag_handlers.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/tag_handlers.hpp') 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 &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; } -- cgit