From 23670046a2ebfba30b9687d4e88e79aae4d1466a Mon Sep 17 00:00:00 2001 From: Michael Spang Date: Fri, 29 Apr 2022 02:30:45 -0400 Subject: [PATCH] Fix clang warnings -Wmissing-declarations (#17861) ../../third_party/connectedhomeip/src/platform/nxp/k32w/k32w0/CHIPDevicePlatformEvent.h:59:5: error: declaration does not declare anything [-Werror,-Wmissing-declarations] union ^ 1 error generated. --- src/platform/nxp/k32w/k32w0/CHIPDevicePlatformEvent.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/platform/nxp/k32w/k32w0/CHIPDevicePlatformEvent.h b/src/platform/nxp/k32w/k32w0/CHIPDevicePlatformEvent.h index df0c42e0b008e5..26540c7bcb9ab3 100644 --- a/src/platform/nxp/k32w/k32w0/CHIPDevicePlatformEvent.h +++ b/src/platform/nxp/k32w/k32w0/CHIPDevicePlatformEvent.h @@ -56,10 +56,6 @@ enum InternalPlatformSpecificEventTypes struct ChipDevicePlatformEvent final { - union - { - /* None currently defined */ - }; }; } // namespace DeviceLayer