Codechange: replace memcpy when copying DParams

This commit is contained in:
Rubidium
2023-06-20 22:58:37 +02:00
committed by rubidium42
parent 2aa48bfcb3
commit fa8c50758b
2 changed files with 3 additions and 10 deletions

View File

@@ -123,13 +123,6 @@ public:
return this->num_param - this->offset;
}
/** Get a pointer to a specific element in the data array. */
uint64 *GetPointerToOffset(size_t offset) const
{
assert(offset < this->num_param);
return &this->data[offset];
}
/** Get the type of a specific element. */
WChar GetTypeAtOffset(size_t offset) const
{