commit | b06c94fd129093f07ebca173a517307013a9d6fd | [log] [tgz] |
---|---|---|
author | Boris Zbarsky <bzbarsky@apple.com> | Wed Sep 13 17:13:55 2023 -0400 |
committer | GitHub <noreply@github.com> | Wed Sep 13 21:13:55 2023 +0000 |
tree | 2cfd80c85a3aa36ffaae7fec81b85d37e485fe07 | |
parent | 1d6ba7fac1f041e785d1da84e72427e26d97bd5f [diff] |
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
diff --git a/src/tracing/registry.h b/src/tracing/registry.h index 57eb2a4..8533725 100644 --- a/src/tracing/registry.h +++ b/src/tracing/registry.h
@@ -16,6 +16,7 @@ */ #pragma once +#include <matter/tracing/build_config.h> #include <tracing/backend.h> namespace chip {