Closed Bert-Proesmans closed 6 years ago
As per https://github.com/rust-lang/rust/commit/9a8d6b8bb5dd7dd2d378849f0c2fa586e3a5b48b;
FatalError is made !Send which in turn makes it impossible to panic!() passing the object. The proper way to panic is now constructing the object and calling raise() on it.
FatalError
!Send
panic!()
raise()
Fixes #28
Sorry for the delay, 0.2.2 has been published. Thanks for the PR!
As per https://github.com/rust-lang/rust/commit/9a8d6b8bb5dd7dd2d378849f0c2fa586e3a5b48b;
FatalError
is made!Send
which in turn makes it impossible topanic!()
passing the object. The proper way to panic is now constructing the object and callingraise()
on it.Fixes #28