Skip to content

Commit

Permalink
no change
Browse files Browse the repository at this point in the history
  • Loading branch information
becem-gharbi committed Jun 22, 2024
1 parent 4822153 commit 8c0f23e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/Store.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespace ESPAdmin
class Store
{
public:
static void begin(const InitOptions options);
static void begin(const InitOptions &options);
static void set(StoreKey key, const char *value);
static String get(StoreKey key);

Expand Down
2 changes: 1 addition & 1 deletion src/Store.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ namespace ESPAdmin
*
* @throws None
*/
void Store::begin(const InitOptions options)
void Store::begin(const InitOptions &options)
{
_NVS.begin(_namespace);

Expand Down

0 comments on commit 8c0f23e

Please sign in to comment.