File tree 2 files changed +8
-7
lines changed
2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 28
28
#include < esp_log.h>
29
29
30
30
EEPROMClass::EEPROMClass (void )
31
- : _data(0 )
31
+ : _handle(NULL )
32
+ , _data(0 )
32
33
, _size(0 )
33
34
, _dirty(false )
34
- , _handle(NULL )
35
35
, _name(" eeprom" )
36
36
, _user_defined_size(0 )
37
37
{
38
38
}
39
39
40
40
EEPROMClass::EEPROMClass (uint32_t sector)
41
41
// Only for compatiility, no sectors in nvs!
42
- : _data(0 )
42
+ : _handle(NULL )
43
+ , _data(0 )
43
44
, _size(0 )
44
45
, _dirty(false )
45
- , _handle(NULL )
46
46
, _name(" eeprom" )
47
47
, _user_defined_size(0 )
48
48
{
49
49
}
50
50
51
51
EEPROMClass::EEPROMClass (const char * name, uint32_t user_defined_size)
52
- : _data(0 )
52
+ : _handle(NULL )
53
+ , _data(0 )
53
54
, _size(0 )
54
55
, _dirty(false )
55
- , _handle(NULL )
56
56
, _name(name)
57
57
, _user_defined_size(user_defined_size)
58
58
{
Original file line number Diff line number Diff line change 59
59
"-Wno-unused-parameter" ,
60
60
"-Wno-sign-compare" ,
61
61
"-fstack-protector" ,
62
- "-fexceptions"
62
+ "-fexceptions" ,
63
+ "-Werror=reorder"
63
64
],
64
65
65
66
CXXFLAGS = [
You can’t perform that action at this time.
0 commit comments