chore: remove useless Hash impl

This commit is contained in:
2025-05-03 20:46:39 +08:00
parent 2f8a530612
commit cc88e7c65f
4 changed files with 3 additions and 33 deletions

View File

@@ -1,5 +1,3 @@
use std::hash::Hash;
use ecow::EcoString;
use crate::ty::internal::{Const, Param};
@@ -94,7 +92,7 @@ pub enum OpCode {
NoOp,
}
#[derive(Debug, Clone, Copy, Hash)]
#[derive(Debug, Clone, Copy)]
pub enum BinOp {
Add,
And,
@@ -104,7 +102,7 @@ pub enum BinOp {
Upd,
}
#[derive(Debug, Clone, Copy, Hash)]
#[derive(Debug, Clone, Copy)]
pub enum UnOp {
Not,
}