From e591e8929d827e3472ad4bf58cd2fb414b2153ba Mon Sep 17 00:00:00 2001 From: wendythewan <99999710+wendythewan@users.noreply.github.com> Date: Fri, 25 Mar 2022 20:57:25 -0700 Subject: [PATCH] Guard raw/Ble usage with CONFIG_NETWORK_LAYER_BLE (#16651) * Guard raw/Ble usage with CONFIG_NETWORK_LAYER_BLE * Guard raw/Ble usage with CONFIG_NETWORK_LAYER_BLE --- src/app/server/Server.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/server/Server.h b/src/app/server/Server.h index e05c4ae54b4cb2..b036f96eed08d7 100644 --- a/src/app/server/Server.h +++ b/src/app/server/Server.h @@ -39,7 +39,9 @@ #include #include #include +#if CONFIG_NETWORK_LAYER_BLE #include +#endif #include namespace chip {