Skip to content

Commit

Permalink
implement hash trait
Browse files Browse the repository at this point in the history
  • Loading branch information
Vrtgs committed Jan 10, 2024
1 parent 60afdad commit 936a997
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ use alloc::{
use alloc::alloc::{Allocator, Global};
use core::slice::SliceIndex;
use core::ops::{Index, IndexMut};
use std::hash::{Hash, Hasher};
use core::hash::{Hash, Hasher};

use likely_stable::{unlikely};
use crate::guard::Guard;
Expand Down Expand Up @@ -1501,7 +1501,6 @@ identical_impl! {
}



macro_rules! impl_deref_comp_trait {
($trait_name: ident |> fn $fn_name:ident(&self, other: &Self) -> $t: ty) => {
identical_impl! {
Expand Down

0 comments on commit 936a997

Please sign in to comment.