Make it build with Cython 3

This commit is contained in:
Dāvis Mosāns 2025-03-06 23:07:21 +02:00
parent 9f92a51f84
commit 0d9b73dfc4
No known key found for this signature in database
GPG Key ID: ABA077CA3812CCB9

View File

@ -36,7 +36,7 @@ cdef class Morphology:
cdef shared_ptr[MorphAnalysisC] _lookup_tag(self, hash_t tag_hash):
match = self.tags.find(tag_hash)
if match != self.tags.const_end():
if match != self.tags.end():
return deref(match).second
else:
return shared_ptr[MorphAnalysisC]()