diff options
author | Aleksey Kladov <[email protected]> | 2020-01-14 14:27:05 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-01-15 15:52:28 +0000 |
commit | ccfe53376ac579c2874000a939ea8be331c626aa (patch) | |
tree | c5e828be066a53e38fcb97b0f4c0ef411fa8951b /crates/ra_hir_def | |
parent | c0661ce7444223b0fff1f5d54adb41022ab788cb (diff) |
Introduce SourceBinder
Diffstat (limited to 'crates/ra_hir_def')
-rw-r--r-- | crates/ra_hir_def/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_hir_def/src/lib.rs b/crates/ra_hir_def/src/lib.rs index ebc12e891..feb3a300d 100644 --- a/crates/ra_hir_def/src/lib.rs +++ b/crates/ra_hir_def/src/lib.rs | |||
@@ -332,7 +332,7 @@ pub enum VariantId { | |||
332 | StructId(StructId), | 332 | StructId(StructId), |
333 | UnionId(UnionId), | 333 | UnionId(UnionId), |
334 | } | 334 | } |
335 | impl_froms!(VariantId: EnumVariantId, StructId); | 335 | impl_froms!(VariantId: EnumVariantId, StructId, UnionId); |
336 | 336 | ||
337 | trait Intern { | 337 | trait Intern { |
338 | type ID; | 338 | type ID; |