fix closure RC increments

This commit is contained in:
Folkert 2021-05-18 21:34:37 +02:00
parent 8dddf952a8
commit 04968d6394
2 changed files with 3 additions and 6 deletions

View file

@ -963,8 +963,6 @@ fn strConcat(allocator: *Allocator, result_in_place: InPlace, arg1: RocStr, arg2
arg1.memcpy(result_ptr);
arg2.memcpy(result_ptr + arg1.len());
arg1.deinit(allocator);
return result;
}
}