FSFW Update #28

Merged
jgerhards merged 782 commits from fsfw_update into develop 2023-05-28 23:43:22 +02:00
786 changed files with 11284 additions and 8654 deletions
Showing only changes of commit 16246d6ece - Show all commits

View File

@@ -28,9 +28,11 @@ class FixedArrayList : public ArrayList<T, count_t> {
} }
FixedArrayList& operator=(FixedArrayList other) { FixedArrayList& operator=(FixedArrayList other) {
memcpy(this->data, other.data, sizeof(this->data));
this->entries = data; this->entries = data;
this->size = other.size; this->size = other.size;
for (size_t idx = 0; idx < this->size; idx++) {
data[idx] = other.data[idx];
}
return *this; return *this;
} }