Commit 3235e86b authored by Andrey Davydov's avatar Andrey Davydov Committed by Andrey Davydov

redundant lifetime parameter removed

parent 0111d295
......@@ -577,9 +577,9 @@ pub struct MergeOperands<'a> {
}
impl <'a> MergeOperands<'a> {
fn new<'a>(operands_list: *const *const c_char,
operands_list_len: *const size_t,
num_operands: c_int) -> MergeOperands<'a> {
fn new(operands_list: *const *const c_char,
operands_list_len: *const size_t,
num_operands: c_int) -> MergeOperands<'a> {
assert!(num_operands >= 0);
MergeOperands {
operands_list: operands_list,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment