This code change is WRONG: when you add a lifetime but it is not tie to any input arguments, this lifetime is useless in most cases. I wrote a post to explain this.
In sort, you need to change &mut self to &'a mut self, then you wouldn't need to add lifetime to Capstone type.
This comment has been minimized.
earthengine commented onSep 26, 2018
a02fc09This code change is WRONG: when you add a lifetime but it is not tie to any input arguments, this lifetime is useless in most cases. I wrote a post to explain this.
In sort, you need to change
&mut selfto&'a mut self, then you wouldn't need to add lifetime toCapstonetype.