From 1087676b2f1a9aaf372f42a9a6ead208171e0df6 Mon Sep 17 00:00:00 2001 From: Boris Zbarsky Date: Wed, 13 Sep 2023 17:13:55 -0400 Subject: [PATCH] Fix MATTER_TRACING_ENABLED checks. (#29219) We were checking MATTTER_TRACING_ENABLED without including the config header that defines it. Fixes https://github.com/project-chip/connectedhomeip/issues/29214 --- src/tracing/registry.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tracing/registry.h b/src/tracing/registry.h index 57eb2a4e1feea1..853372585840fa 100644 --- a/src/tracing/registry.h +++ b/src/tracing/registry.h @@ -16,6 +16,7 @@ */ #pragma once +#include #include namespace chip {