diff options
Diffstat (limited to 'src/eval')
| -rw-r--r-- | src/eval/call.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eval/call.rs b/src/eval/call.rs index a2387a17..f47ee847 100644 --- a/src/eval/call.rs +++ b/src/eval/call.rs @@ -102,7 +102,7 @@ impl Args { /// Convert and remove the value for the given named argument, producing an /// error if the conversion fails. - pub fn get<'a, T>(&mut self, ctx: &mut EvalContext, name: &str) -> Option<T> + pub fn get<T>(&mut self, ctx: &mut EvalContext, name: &str) -> Option<T> where T: Cast<Spanned<Value>>, { |
