1
0
forked from fsfw/fsfw

reverted some naming changes

This commit is contained in:
2020-04-07 22:16:43 +02:00
parent c88c6c2a45
commit 30ed08005f
3 changed files with 33 additions and 32 deletions

View File

@ -52,10 +52,10 @@ public:
const uint8_t * getConstBuffer();
void setBuffer(void* buffer_, count_t bufferLength_);
private:
bool m_serialize_length = false;
const uint8_t *m_const_buffer = nullptr;
bool serializeLength = false;
const uint8_t *constBuffer = nullptr;
uint8_t *m_buffer = nullptr;
count_t m_buffer_length = 0;
count_t bufferLength = 0;
};