mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 20:42:21 +02:00
Launch args, auto generate startup code, additional locking detection
This commit is contained in:
parent
b640bf9d5e
commit
bcc7de66d9
6 changed files with 153 additions and 10 deletions
|
@ -958,8 +958,7 @@ public:
|
|||
intptr moveCount = this->mSize - idx;
|
||||
memmove(this->mVals + idx + size, this->mVals + idx, moveCount * sizeof(T));
|
||||
}
|
||||
for (intptr i = 0; i < size; i++)
|
||||
this->mVals[idx + i] = vals[i];
|
||||
memcpy(&this->mVals[idx], vals, size * sizeof(T));
|
||||
this->mSize += (int_cosize)size;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue