From d869ffff6843e33eb089a485c13d0dbb4ba18816 Mon Sep 17 00:00:00 2001 From: Jochen Vothknecht <jochen3120@gmail.com> Date: Sat, 25 Jun 2022 18:05:45 +0200 Subject: [PATCH] ST: Code formatting --- CLC-qthing/SiliconTorch/NVSExplorer.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CLC-qthing/SiliconTorch/NVSExplorer.hpp b/CLC-qthing/SiliconTorch/NVSExplorer.hpp index c163447..ff3e941 100644 --- a/CLC-qthing/SiliconTorch/NVSExplorer.hpp +++ b/CLC-qthing/SiliconTorch/NVSExplorer.hpp @@ -65,18 +65,18 @@ namespace SiliconTorch { i64 getI64(const str& nameSpace, const str& key, i64 defaultValue = 0); - float getFloat(const str& nameSpace, const str& key); + float getFloat (const str& nameSpace, const str& key); double getDouble(const str& nameSpace, const str& key); - bool setFloat(const str& nameSpace, const str& key, float value); + bool setFloat (const str& nameSpace, const str& key, float value); bool setDouble(const str& nameSpace, const str& key, double value); // Gets the key regardless of its type in flash - i64 getSignedInt(const str& nameSpace, const str& key, i64 defaultValue = 0); + i64 getSignedInt (const str& nameSpace, const str& key, i64 defaultValue = 0); u64 getUnsignedInt(const str& nameSpace, const str& key, u64 defaultValue = 0); // TODO: ⮦ Both unimplemented atm ⮧ - bool setSignedInt(const str& nameSpace, const str& key, i64 value, nvs_type_t entryType = NVS_TYPE_ANY); + bool setSignedInt (const str& nameSpace, const str& key, i64 value, nvs_type_t entryType = NVS_TYPE_ANY); bool setUnsignedInt(const str& nameSpace, const str& key, u64 value, nvs_type_t entryType = NVS_TYPE_ANY); -- GitLab