From 1101369ee69487b6217baf9c30370ce654387a1b Mon Sep 17 00:00:00 2001 From: Deomid Ryabkov Date: Tue, 12 Sep 2023 08:46:21 +0100 Subject: [PATCH] CHIPCryptoPALmbedTLS: Include mbedtls/version.h (#29168) `MBEDTLS_VERSION_NUMBER` is defined in version.h, include explicitly. --- src/crypto/CHIPCryptoPALmbedTLS.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/crypto/CHIPCryptoPALmbedTLS.cpp b/src/crypto/CHIPCryptoPALmbedTLS.cpp index c903d984f57e08..0207e303bd9ba6 100644 --- a/src/crypto/CHIPCryptoPALmbedTLS.cpp +++ b/src/crypto/CHIPCryptoPALmbedTLS.cpp @@ -37,6 +37,7 @@ #include #include #include +#include #if defined(MBEDTLS_X509_CRT_PARSE_C) #include #endif // defined(MBEDTLS_X509_CRT_PARSE_C)