Skip to content

simple-query: Avoid some silly string copies

Niels De Graef requested to merge nielsdg/avoid-some-silly-copies into master

We're doing some unnecessary copies in Folks.SimpleQuery, most of all in the private method _string_matches_token(), which can be quite hot code. By declaring these strings as unowned, we can avoid this.

Merge request reports