mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 22:34:45 +00:00
Remove extraneous .into()
This commit is contained in:
parent
b2343cb0ad
commit
2f574ea75e
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ pub fn str_repeat<'a, 'ctx, 'env>(
|
||||||
) -> BasicValueEnum<'ctx> {
|
) -> BasicValueEnum<'ctx> {
|
||||||
let str_c_abi = str_symbol_to_c_abi(env, scope, str_symbol);
|
let str_c_abi = str_symbol_to_c_abi(env, scope, str_symbol);
|
||||||
let count = load_symbol(scope, &count_symbol);
|
let count = load_symbol(scope, &count_symbol);
|
||||||
call_bitcode_fn(env, &[str_c_abi.into(), count.into()], bitcode::STR_REPEAT)
|
call_bitcode_fn(env, &[str_c_abi.into(), count], bitcode::STR_REPEAT)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Str.split : Str, Str -> List Str
|
/// Str.split : Str, Str -> List Str
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue