removed swappers for arraylist for now
This commit is contained in:
@ -250,25 +250,6 @@ protected:
|
||||
* true if the array was allocated and needs to be deleted in the destructor.
|
||||
*/
|
||||
bool allocated;
|
||||
|
||||
/**
|
||||
* Swap the endianness of the Array list (not the length field !)
|
||||
* Useful if the case the buffer type is larger than uint8_t
|
||||
* @param list
|
||||
*/
|
||||
void swapArrayListEndianness() {
|
||||
ReturnValue_t result = HasReturnvaluesIF::RETURN_OK;
|
||||
count_t i = 0;
|
||||
// uint8_t buffer does not require swapping of entries.
|
||||
if(sizeof(T) == 1) {
|
||||
return;
|
||||
}
|
||||
while ((result == HasReturnvaluesIF::RETURN_OK) && (i < size)) {
|
||||
T newEntry = EndianSwapper::swap(entries[i]);
|
||||
entries[i] = newEntry;
|
||||
++i;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
#endif /* ARRAYLIST_H_ */
|
||||
|
Reference in New Issue
Block a user