mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 11:38:21 +02:00
Changed GrowUnitialized to NoShow
This commit is contained in:
parent
b34a14502d
commit
861913d591
5 changed files with 5 additions and 5 deletions
|
@ -446,7 +446,7 @@ namespace System.Collections
|
|||
return &mItems[mSize - addSize];
|
||||
}
|
||||
|
||||
[Obsolete("Method replaced by GrowUninitialized due to misspelling")]
|
||||
[Obsolete("Method replaced by GrowUninitialized due to misspelling"), NoShow]
|
||||
public T* GrowUnitialized(int addSize) => GrowUninitialized(addSize);
|
||||
|
||||
public void Clear()
|
||||
|
|
|
@ -128,7 +128,7 @@ namespace CURL
|
|||
int byteCount = size * count;
|
||||
if (byteCount > 0)
|
||||
{
|
||||
Internal.MemCpy(transfer.mData.GrowUnitialized(byteCount), dataPtr, byteCount);
|
||||
Internal.MemCpy(transfer.mData.GrowUninitialized(byteCount), dataPtr, byteCount);
|
||||
}
|
||||
return count;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue