josephg / jumprope-rs

Other
135 stars 5 forks source link

Fix potential UB functions #2

Closed drewkett closed 1 year ago

drewkett commented 2 years ago

These two function definitions allow the caller to specify a longer lifetime (ie 'static) than the passed reference to self. Removing the explicit lifetime ties the two lifetimes together

josephg commented 1 year ago

Nice catch - thanks! (Sorry I didn't see this until now!)