remove forward pointer for attrs

This commit is contained in:
Aleksey Kladov 2019-10-30 18:06:08 +03:00
parent c1ed9ccc4e
commit e34e71c62d
4 changed files with 2 additions and 6 deletions

View file

@ -3,7 +3,7 @@
use rustc_hash::FxHashMap;
use std::sync::Arc;
use hir_def::type_ref::TypeRef;
use hir_def::{attr::Attr, type_ref::TypeRef};
use ra_arena::{impl_arena_id, map::ArenaMap, Arena, RawId};
use ra_cfg::CfgOptions;
use ra_syntax::{
@ -12,7 +12,6 @@ use ra_syntax::{
};
use crate::{
attr::Attr,
code_model::{Module, ModuleSource},
db::{AstDatabase, DefDatabase, HirDatabase},
generics::HasGenericParams,