Fix Werror=reorder for idf.py build (#2707)

This commit is contained in:
Nick Hynes
2019-04-25 02:02:21 -07:00
committed by Me No Dev
parent 619568db5b
commit 271e5cd206
2 changed files with 8 additions and 7 deletions

View File

@ -28,10 +28,10 @@
#include <esp_log.h>
EEPROMClass::EEPROMClass(void)
: _data(0)
: _handle(NULL)
, _data(0)
, _size(0)
, _dirty(false)
, _handle(NULL)
, _name("eeprom")
, _user_defined_size(0)
{
@ -39,20 +39,20 @@ EEPROMClass::EEPROMClass(void)
EEPROMClass::EEPROMClass(uint32_t sector)
// Only for compatiility, no sectors in nvs!
: _data(0)
: _handle(NULL)
, _data(0)
, _size(0)
, _dirty(false)
, _handle(NULL)
, _name("eeprom")
, _user_defined_size(0)
{
}
EEPROMClass::EEPROMClass(const char* name, uint32_t user_defined_size)
: _data(0)
: _handle(NULL)
, _data(0)
, _size(0)
, _dirty(false)
, _handle(NULL)
, _name(name)
, _user_defined_size(user_defined_size)
{