mbed-os/features/storage
Janne Kiiskila c59c8e9d63 NVStore.cpp compiler warning removal (os_ret)
One gets this compiler warning from nvstore.cpp:

```
Compile [ 48.6%]: nvstore.cpp
[Warning] nvstore.cpp@814,9: variable 'os_ret' set but not used [-Wunused-but-set-variable]
```

Turns out it's caused by the fact that the variable is only used
with MBED_ASSERTs, which get optimized out or not, depending on your
build profile. In reality we do not need a separate variable for that
in my opinion though, so we can just use the ret-variable instead
and drop the os_ret variable completely and thus avoid this
compiler warning.
2019-05-03 12:24:48 +01:00
..
FEATURE_STORAGE Remove CFSTORE VERSION file (colliding with an ARM 6.12 C++ header file) 2019-04-05 12:26:58 +01:00
TESTS Improve general Block Device tests 2019-04-05 12:26:26 +01:00
blockdevice ExhaustibleBD: licensed under Apache 2.0 2019-04-24 13:37:42 +01:00
filesystem Fixed littlefs tests to be Py3 compat 2019-04-24 13:37:42 +01:00
kvstore Configure PS with tdbstore 2019-04-24 13:37:42 +01:00
nvstore NVStore.cpp compiler warning removal (os_ret) 2019-05-03 12:24:48 +01:00
system_storage Add missing RSPIF component to the defaut BlockDevice handler 2019-04-05 12:26:10 +01:00