From 6a21b5f9ae29dd165ea2a359943264910048957e Mon Sep 17 00:00:00 2001 From: Abtin Keshavarzian Date: Tue, 10 Jan 2023 15:12:47 -0800 Subject: [PATCH] [netdiag] include `netdiag.h` header in `network_diagnostic_tlvs.hpp` (#8639) The `network_diagnostic_tlvs.hpp` defines the net diag TLVs and uses the public definitions (constants) from `openthread/netdiag.h` but did not include it directly. This commit ensures we include it directly. --- src/core/thread/network_diagnostic_tlvs.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/thread/network_diagnostic_tlvs.hpp b/src/core/thread/network_diagnostic_tlvs.hpp index f50418fdf..ed8abe948 100644 --- a/src/core/thread/network_diagnostic_tlvs.hpp +++ b/src/core/thread/network_diagnostic_tlvs.hpp @@ -36,6 +36,7 @@ #include "openthread-core-config.h" +#include #include #include "common/clearable.hpp"