Fix new nightly warning.
This commit is contained in:
parent
0a46a244e0
commit
ed6430abed
@ -1,7 +1,6 @@
|
|||||||
use crate::function::builtin::builtin_function;
|
use crate::function::builtin::builtin_function;
|
||||||
|
|
||||||
use crate::{context::Context, error::*, value::Value, ContextWithMutableVariables};
|
use crate::{context::Context, error::*, value::Value, ContextWithMutableVariables};
|
||||||
use std::borrow::Borrow;
|
|
||||||
|
|
||||||
mod display;
|
mod display;
|
||||||
|
|
||||||
@ -219,7 +218,10 @@ impl Operator {
|
|||||||
} else {
|
} else {
|
||||||
Err(EvalexprError::wrong_type_combination(
|
Err(EvalexprError::wrong_type_combination(
|
||||||
self.clone(),
|
self.clone(),
|
||||||
vec![arguments[0].borrow().into(), arguments[1].borrow().into()],
|
vec![
|
||||||
|
arguments.get(0).unwrap().into(),
|
||||||
|
arguments.get(1).unwrap().into(),
|
||||||
|
],
|
||||||
))
|
))
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user