This is an automated email from the ASF dual-hosted git repository.
janc pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-nimble.git
The following commit(s) were added to refs/heads/master by this push:
new 9d0217ac6 host/store: remove unneeded base64/base64.h include
9d0217ac6 is described below
commit 9d0217ac673c7912df98608f1f53ca6479515285
Author: Gerard Marull-Paretas <[email protected]>
AuthorDate: Thu Mar 20 12:50:20 2025 +0100
host/store: remove unneeded base64/base64.h include
The include is not needed in ble_store_config.c. It also makes it
impossible to compile config store without persistent storage out of
mynewt.
Signed-off-by: Gerard Marull-Paretas <[email protected]>
---
nimble/host/store/config/src/ble_store_config.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/nimble/host/store/config/src/ble_store_config.c
b/nimble/host/store/config/src/ble_store_config.c
index b800a4ee5..741c73a5f 100644
--- a/nimble/host/store/config/src/ble_store_config.c
+++ b/nimble/host/store/config/src/ble_store_config.c
@@ -23,7 +23,6 @@
#include "sysinit/sysinit.h"
#include "syscfg/syscfg.h"
#include "host/ble_hs.h"
-#include "base64/base64.h"
#include "os/util.h"
#include "store/config/ble_store_config.h"
#include "ble_store_config_priv.h"