From e13071ab2d07bbbe1718181fa82197f6b27744a3 Mon Sep 17 00:00:00 2001 From: Marcin Kajor Date: Wed, 10 Jan 2024 12:16:30 +0100 Subject: [PATCH] [nrf noup] [zephyr] Fix CHIPDevicePlatformEvent.h include dependencies Currently the CHIPDevicePlatformEvent depends on the SystemPacketBuffer which is included in the CHIPDeviceEvent.h too late. The problem is silently fixed in the application when the include is preceded by other headers that pull in SystemPacketBuffer.h. Signed-off-by: Marcin Kajor --- src/platform/Zephyr/CHIPDevicePlatformEvent.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/platform/Zephyr/CHIPDevicePlatformEvent.h b/src/platform/Zephyr/CHIPDevicePlatformEvent.h index ff329ec759..8291c5d3a3 100644 --- a/src/platform/Zephyr/CHIPDevicePlatformEvent.h +++ b/src/platform/Zephyr/CHIPDevicePlatformEvent.h @@ -23,7 +23,7 @@ #pragma once -#include +#include #include