Skip to content

Commit

Permalink
fix: add back incorrectly spelled initalize_process
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret committed Jan 8, 2025
1 parent 4d8903c commit 4b464c5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/cppgc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,12 @@ pub fn initialize_process(platform: SharedRef<Platform>) {
}
}

#[deprecated(note = "use correctly spelled initialize_process")]
#[inline]
pub fn initalize_process(platform: SharedRef<Platform>) {
initialize_process(platform)
}

/// # Safety
///
/// Must be called after destroying the last used heap. Some process-global
Expand Down

0 comments on commit 4b464c5

Please sign in to comment.