replace borrowed boolean with ownership enum

This commit is contained in:
J.Teeuwissen 2023-01-04 13:30:42 +01:00
parent 6bdab37541
commit 6c95bc1fb9
No known key found for this signature in database
GPG key ID: DB5F7A1ED8D478AD
9 changed files with 48 additions and 29 deletions

View file

@ -46,7 +46,7 @@ pub fn make_tail_recursive<'a>(
args.iter().map(|(layout, symbol, _)| Param {
symbol: *symbol,
layout: *layout,
borrow: true,
ownership: Ownership::Borrowed,
}),
arena,
)