Remove 'const' from PersistentStore::capacity

This commit is contained in:
Scott Lahteine
2018-08-14 01:04:11 -05:00
parent c64199941e
commit 834ea7fcea
10 changed files with 15 additions and 15 deletions

View File

@ -31,7 +31,7 @@ public:
static bool access_finish();
static bool write_data(int &pos, const uint8_t *value, size_t size, uint16_t *crc);
static bool read_data(int &pos, uint8_t* value, size_t size, uint16_t *crc, const bool writing=true);
static const size_t capacity();
static size_t capacity();
static inline bool write_data(const int pos, uint8_t* value, const size_t size) {
int data_pos = pos;