You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Replace IoError(io::Error) with IoError(Rc<io::Error>)
As per rust-lang/rust#23919, the Clone and
PartialEq traits were removed from io::Error, breaking the derived
Clone and PartialEq trait of ParserError. Use Rc<io::Error> to get
Clone back, and implement PartialEq manually.
Signed-off-by: Anders Kaseorg <[email protected]>
0 commit comments