bugfixes, owner ptr not const anymore

This commit is contained in:
2020-09-28 21:09:56 +02:00
parent 88c4b2a539
commit bf574c12e4
6 changed files with 44 additions and 24 deletions

View File

@ -28,7 +28,7 @@ public:
size_t getSerializedSize() const override {
size_t linkedSize = SerialLinkedListAdapter::getSerializedSize();
linkedSize += dataSet->getFillCount() * sizeof(lp_id_t);
linkedSize += dataSet->getLocalPoolIdsSerializedSize();
return linkedSize;
}