Skip to content

Commit bbcd356

Browse files
committed
remove useless hash
1 parent af62fde commit bbcd356

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

crates/ra_hir/src/macros.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ use ra_syntax::{
1717
use crate::{MacroCallId, PersistentHirDatabase};
1818

1919
// Hard-coded defs for now :-(
20-
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
20+
#[derive(Debug, Clone, PartialEq, Eq)]
2121
pub enum MacroDef {
2222
Vec,
2323
QueryGroup,

crates/ra_hir/src/module_tree.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ pub struct ModuleTree {
115115
links: Arena<LinkId, LinkData>,
116116
}
117117

118-
#[derive(Debug, PartialEq, Eq, Hash)]
118+
#[derive(Debug, PartialEq, Eq)]
119119
pub struct ModuleData {
120120
file_id: HirFileId,
121121
/// Points to `ast::Module`, `None` for the whole file.

0 commit comments

Comments
 (0)