AP_HAL: RingBuffer: remove C++11 initialization

They are already initialized in the constructor.
This commit is contained in:
Lucas De Marchi 2016-07-08 16:08:46 -03:00
parent 3e1acdcbbf
commit 24c7f76034

View File

@ -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