v6.0.0 #729

Merged
mohr merged 668 commits from development into master 2023-02-23 13:42:49 +01:00
1 changed files with 3 additions and 1 deletions
Showing only changes of commit 83c2c4825c - Show all commits

View File

@ -20,7 +20,9 @@ class FixedArrayList : public ArrayList<T, count_t> {
FixedArrayList() : ArrayList<T, count_t>(data, MAX_SIZE) {}
FixedArrayList(const FixedArrayList& other) : ArrayList<T, count_t>(data, MAX_SIZE) {
memcpy(this->data, other.data, sizeof(this->data));
for (size_t idx = 0; idx < sizeof(data); idx++) {
data[idx] = other.data[idx];
}
this->entries = data;
this->size = other.size;
}