Remove unused hard-coded paths

This commit is contained in:
Emil Lauridsen 2019-12-29 17:39:44 +01:00
parent 8fad8e897a
commit 8280795a85

View File

@ -260,12 +260,8 @@ macro_rules! __known_path {
(std::ops::RangeTo) => {}; (std::ops::RangeTo) => {};
(std::ops::RangeToInclusive) => {}; (std::ops::RangeToInclusive) => {};
(std::ops::RangeInclusive) => {}; (std::ops::RangeInclusive) => {};
(std::boxed::Box) => {};
(std::future::Future) => {}; (std::future::Future) => {};
(std::ops::Try) => {}; (std::ops::Try) => {};
(std::ops::Neg) => {};
(std::ops::Not) => {};
(std::ops::Index) => {};
($path:path) => { ($path:path) => {
compile_error!("Please register your known path in the path module") compile_error!("Please register your known path in the path module")
}; };