replaced getSerializedSize returnvalue with size_t

This commit is contained in:
2020-04-05 21:54:11 +02:00
parent 7079c9c56d
commit 87852e5f2a
40 changed files with 44 additions and 44 deletions

View File

@ -44,7 +44,7 @@ public:
}
uint32_t getSerializedSize() const {
size_t getSerializedSize() const {
return sizeof(apid) + sizeof(ssc);
}
@ -244,7 +244,7 @@ public:
return adapter.serialize(buffer,size,max_size,bigEndian);
}
uint32_t getSerializedSize() const {
size_t getSerializedSize() const {
uint32_t size = 0;
size += AutoSerializeAdapter::getSerializedSize(&apid);
size += AutoSerializeAdapter::getSerializedSize(&sourceSequenceCount);