diff options
author | Emil Lauridsen <[email protected]> | 2019-12-29 16:39:44 +0000 |
---|---|---|
committer | Emil Lauridsen <[email protected]> | 2019-12-29 16:39:44 +0000 |
commit | 8280795a85a9a6d5ec43fea00a023e0b7dc9aaa8 (patch) | |
tree | 299c31f7ff88c9c50385a6d010a4fa0977aa3424 /crates/ra_hir_def | |
parent | 8fad8e897a8d3a5c2e55d3a00fb8465fb87f86bb (diff) |
Remove unused hard-coded paths
Diffstat (limited to 'crates/ra_hir_def')
-rw-r--r-- | crates/ra_hir_def/src/path.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/crates/ra_hir_def/src/path.rs b/crates/ra_hir_def/src/path.rs index 107d2d799..82cfa67a9 100644 --- a/crates/ra_hir_def/src/path.rs +++ b/crates/ra_hir_def/src/path.rs | |||
@@ -260,12 +260,8 @@ macro_rules! __known_path { | |||
260 | (std::ops::RangeTo) => {}; | 260 | (std::ops::RangeTo) => {}; |
261 | (std::ops::RangeToInclusive) => {}; | 261 | (std::ops::RangeToInclusive) => {}; |
262 | (std::ops::RangeInclusive) => {}; | 262 | (std::ops::RangeInclusive) => {}; |
263 | (std::boxed::Box) => {}; | ||
264 | (std::future::Future) => {}; | 263 | (std::future::Future) => {}; |
265 | (std::ops::Try) => {}; | 264 | (std::ops::Try) => {}; |
266 | (std::ops::Neg) => {}; | ||
267 | (std::ops::Not) => {}; | ||
268 | (std::ops::Index) => {}; | ||
269 | ($path:path) => { | 265 | ($path:path) => { |
270 | compile_error!("Please register your known path in the path module") | 266 | compile_error!("Please register your known path in the path module") |
271 | }; | 267 | }; |