Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/syntax/src/ptr.rs')
| -rw-r--r-- | crates/syntax/src/ptr.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/syntax/src/ptr.rs b/crates/syntax/src/ptr.rs index 282470bae4..57ae64cafe 100644 --- a/crates/syntax/src/ptr.rs +++ b/crates/syntax/src/ptr.rs @@ -81,7 +81,7 @@ impl<N: AstNode> PartialEq for AstPtr<N> { impl<N: AstNode> Hash for AstPtr<N> { fn hash<H: Hasher>(&self, state: &mut H) { - self.raw.hash(state) + self.raw.hash(state); } } |