SkylerLipthay / interpolate_idents

Useable macro identifier concatenation plugin for Rust (deprecated)
MIT License
42 stars 10 forks source link

Fixes compile error on FatalError struct #29

Closed Bert-Proesmans closed 6 years ago

Bert-Proesmans commented 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.

Fixes #28

SkylerLipthay commented 6 years ago

Sorry for the delay, 0.2.2 has been published. Thanks for the PR!