Skip to content

Commit

Permalink
fix: add missing partial Ord on legacy array
Browse files Browse the repository at this point in the history
  • Loading branch information
glihm committed Mar 1, 2024
1 parent 9a217c5 commit c29e4f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/cairo-serde/src/types/array_legacy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
use crate::{CairoSerde, Error, Result};
use starknet::core::types::FieldElement;

#[derive(Debug, Clone, PartialEq)]
#[derive(Debug, Clone, PartialEq, PartialOrd)]
pub struct CairoArrayLegacy<T>(pub Vec<T>);

impl<T: std::clone::Clone> CairoArrayLegacy<T> {
Expand Down

0 comments on commit c29e4f8

Please sign in to comment.