AP_HAL: RingBuffer: remove C++11 initialization
They are already initialized in the constructor.
This commit is contained in:
parent
3e1acdcbbf
commit
24c7f76034
@ -99,8 +99,8 @@ public:
|
||||
bool commit(uint32_t len);
|
||||
|
||||
private:
|
||||
uint8_t *buf = nullptr;
|
||||
uint32_t size = 0;
|
||||
uint8_t *buf;
|
||||
uint32_t size;
|
||||
|
||||
// head is where the next available data is. tail is where new
|
||||
// data is written
|
||||
|
Loading…
Reference in New Issue
Block a user