Skip to content

Commit

Permalink
Merge pull request #116 from celaus/main
Browse files Browse the repository at this point in the history
Added Clone to errors
  • Loading branch information
ISibboI committed Dec 2, 2022
2 parents 040a192 + f552007 commit 6b64972
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/error/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use crate::{operator::Operator, value::Value};
mod display;

/// Errors used in this crate.
#[derive(Debug, PartialEq)]
#[derive(Debug, Clone, PartialEq)]
#[non_exhaustive]
pub enum EvalexprError {
/// An operator was called with a wrong amount of arguments.
Expand Down

0 comments on commit 6b64972

Please sign in to comment.