From 1235950a4ad9602b8691c6d41b63be4b21b8ada3 Mon Sep 17 00:00:00 2001 From: Boris Zbarsky Date: Thu, 1 Dec 2022 16:26:26 -0500 Subject: [PATCH] Switch to having just one typedef for MTRCertificateDERBytes. (#23855) Having two typedefs leads to some compilers complaining if they see both, even though they are identical. --- src/darwin/Framework/CHIP/MTRDeviceControllerStartupParams.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/darwin/Framework/CHIP/MTRDeviceControllerStartupParams.h b/src/darwin/Framework/CHIP/MTRDeviceControllerStartupParams.h index dfafee444916aa..8ff5775ed71279 100644 --- a/src/darwin/Framework/CHIP/MTRDeviceControllerStartupParams.h +++ b/src/darwin/Framework/CHIP/MTRDeviceControllerStartupParams.h @@ -16,7 +16,7 @@ #import -typedef NSData * MTRCertificateDERBytes; +#import NS_ASSUME_NONNULL_BEGIN