mirror of
https://github.com/denoland/rusty_v8.git
synced 2024-12-26 09:13:46 -05:00
Fix typo in signature of trait method 'Shared::from_unique_ptr()' (#393)
This commit is contained in:
parent
771acbab02
commit
e4c260b8d2
1 changed files with 1 additions and 1 deletions
|
@ -177,7 +177,7 @@ where
|
|||
Self: Sized,
|
||||
{
|
||||
fn clone(shared_ptr: &SharedPtrBase<Self>) -> SharedPtrBase<Self>;
|
||||
fn from_unique_ptr(shared_ptr: UniquePtr<Self>) -> SharedPtrBase<Self>;
|
||||
fn from_unique_ptr(unique_ptr: UniquePtr<Self>) -> SharedPtrBase<Self>;
|
||||
fn get(shared_ptr: &SharedPtrBase<Self>) -> *mut Self;
|
||||
fn reset(shared_ptr: &mut SharedPtrBase<Self>);
|
||||
fn use_count(shared_ptr: &SharedPtrBase<Self>) -> long;
|
||||
|
|
Loading…
Reference in a new issue