1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-27 18:02:17 +03:00

BREAKING: Change return EEPROM.end() to bool (#7630)

This commit is contained in:
Erriez
2020-10-16 00:03:28 +02:00
committed by GitHub
parent 81a10a48af
commit e79eb1174d
2 changed files with 10 additions and 5 deletions

View File

@ -35,7 +35,7 @@ public:
uint8_t read(int const address);
void write(int const address, uint8_t const val);
bool commit();
void end();
bool end();
uint8_t * getDataPtr();
uint8_t const * getConstDataPtr() const;