summaryrefslogtreecommitdiff
path: root/lib/tag_handlers.hpp
diff options
context:
space:
mode:
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;
}