Skip to content

Commit

Permalink
fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanwhit committed Oct 29, 2024
1 parent 19b5467 commit 3a15efc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/isolate_create_params.rs
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,8 @@ impl CreateParams {
/// * `virtual_memory_limit` - The amount of virtual memory on the current device, in bytes, or zero, if there is no limit.
pub fn heap_limits_from_system_memory(
mut self,
physical_memory: usize,
virtual_memory_limit: usize,
physical_memory: u64,
virtual_memory_limit: u64,
) -> Self {
self
.raw
Expand Down

0 comments on commit 3a15efc

Please sign in to comment.