remove useless hash
This commit is contained in:
parent
af62fde57f
commit
bbcd3566de
2 changed files with 2 additions and 2 deletions
|
|
@ -17,7 +17,7 @@ use ra_syntax::{
|
|||
use crate::{MacroCallId, PersistentHirDatabase};
|
||||
|
||||
// Hard-coded defs for now :-(
|
||||
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
||||
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||
pub enum MacroDef {
|
||||
Vec,
|
||||
QueryGroup,
|
||||
|
|
|
|||
|
|
@ -115,7 +115,7 @@ pub struct ModuleTree {
|
|||
links: Arena<LinkId, LinkData>,
|
||||
}
|
||||
|
||||
#[derive(Debug, PartialEq, Eq, Hash)]
|
||||
#[derive(Debug, PartialEq, Eq)]
|
||||
pub struct ModuleData {
|
||||
file_id: HirFileId,
|
||||
/// Points to `ast::Module`, `None` for the whole file.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue