diff options
author | Kirill Bulatov <[email protected]> | 2020-02-02 12:27:52 +0000 |
---|---|---|
committer | Kirill Bulatov <[email protected]> | 2020-02-02 12:27:52 +0000 |
commit | c669b2f489cb551fbe53fd01f7532b5d55ffe704 (patch) | |
tree | 3fcd9d5dd6cc88ce98162cdea548b3dbd853ead6 /crates/ra_hir_expand | |
parent | 6dae5cbb1190cde6a20aa1758c7d87e84933378e (diff) |
Code review fixes
Diffstat (limited to 'crates/ra_hir_expand')
-rw-r--r-- | crates/ra_hir_expand/src/name.rs | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/crates/ra_hir_expand/src/name.rs b/crates/ra_hir_expand/src/name.rs index 44b47ec91..133805bdb 100644 --- a/crates/ra_hir_expand/src/name.rs +++ b/crates/ra_hir_expand/src/name.rs | |||
@@ -143,9 +143,6 @@ pub mod known { | |||
143 | std, | 143 | std, |
144 | core, | 144 | core, |
145 | alloc, | 145 | alloc, |
146 | hash, | ||
147 | fmt, | ||
148 | io, | ||
149 | iter, | 146 | iter, |
150 | ops, | 147 | ops, |
151 | future, | 148 | future, |
@@ -170,9 +167,6 @@ pub mod known { | |||
170 | Neg, | 167 | Neg, |
171 | Not, | 168 | Not, |
172 | Index, | 169 | Index, |
173 | Display, | ||
174 | Iterator, | ||
175 | Hasher, | ||
176 | // Builtin macros | 170 | // Builtin macros |
177 | file, | 171 | file, |
178 | column, | 172 | column, |
@@ -193,6 +187,13 @@ pub mod known { | |||
193 | PartialOrd, | 187 | PartialOrd, |
194 | Eq, | 188 | Eq, |
195 | PartialEq, | 189 | PartialEq, |
190 | // FIXME delete those after `ImportResolver` is removed. | ||
191 | hash, | ||
192 | fmt, | ||
193 | io, | ||
194 | Display, | ||
195 | Iterator, | ||
196 | Hasher, | ||
196 | ); | 197 | ); |
197 | 198 | ||
198 | // self/Self cannot be used as an identifier | 199 | // self/Self cannot be used as an identifier |