aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir/src/nameres/lower.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_hir/src/nameres/lower.rs')
-rw-r--r--crates/ra_hir/src/nameres/lower.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/ra_hir/src/nameres/lower.rs b/crates/ra_hir/src/nameres/lower.rs
index 56262ad6d..24707aed1 100644
--- a/crates/ra_hir/src/nameres/lower.rs
+++ b/crates/ra_hir/src/nameres/lower.rs
@@ -18,8 +18,8 @@ use crate::{
18pub struct ImportId(RawId); 18pub struct ImportId(RawId);
19impl_arena_id!(ImportId); 19impl_arena_id!(ImportId);
20 20
21#[derive(Debug, PartialEq, Eq)] 21#[derive(Debug, Clone, PartialEq, Eq)]
22pub(super) struct ImportData { 22pub struct ImportData {
23 pub(super) path: Path, 23 pub(super) path: Path,
24 pub(super) alias: Option<Name>, 24 pub(super) alias: Option<Name>,
25 pub(super) is_glob: bool, 25 pub(super) is_glob: bool,