Skip to content

Commit 24cf2e4

Browse files
committed
Fix includes warnings
Signed-off-by: Adrian Gielniewski <adrian.gielniewski@nordicsemi.no>
1 parent fc50e29 commit 24cf2e4

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

examples/lighting-app/cc13x4_26x4/src/AppTask.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
#include <ti/drivers/apps/LED.h>
5858

5959
#if CHIP_CONFIG_ENABLE_ICD_UAT
60-
#include "app/icd/server/ICDNotifier.h"
60+
#include "app/icd/server/ICDNotifier.h" // nogncheck
6161
#endif
6262

6363
/* syscfg */

examples/platform/linux/AppMain.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
#include <app/clusters/device-energy-management-server/DeviceEnergyManagementTestEventTriggerHandler.h>
9999
#endif
100100
#if CHIP_CONFIG_ENABLE_ICD_SERVER
101-
#include <app/icd/server/ICDManager.h>
101+
#include <app/icd/server/ICDManager.h> // nogncheck
102102
#endif
103103
#include <app/TestEventTriggerDelegate.h>
104104

src/app/clusters/icd-management-server/icd-management-server.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@
2525
#include <app-common/zap-generated/ids/Clusters.h>
2626
#include <app/AttributeAccessInterface.h>
2727
#include <app/AttributeAccessInterfaceRegistry.h>
28-
#include <app/icd/server/ICDNotifier.h>
28+
#if CHIP_CONFIG_ENABLE_ICD_CIP
29+
#include <app/icd/server/ICDNotifier.h> // nogncheck
30+
#endif
2931
#include <app/server/Server.h>
3032
#include <app/util/attribute-storage.h>
3133

src/app/clusters/icd-management-server/icd-management-server.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
#if CHIP_CONFIG_ENABLE_ICD_CIP
3232
#include <app/ConcreteAttributePath.h>
33-
#include <app/icd/server/ICDMonitoringTable.h>
33+
#include <app/icd/server/ICDMonitoringTable.h> // nogncheck
3434
#include <lib/core/CHIPPersistentStorageDelegate.h>
3535
#endif // CHIP_CONFIG_ENABLE_ICD_CIP
3636

0 commit comments

Comments
 (0)