From 4a776be7194a6553323b84554c9c833c97119d95 Mon Sep 17 00:00:00 2001 From: Tommy Chiang Date: Fri, 24 Jan 2025 21:09:08 +0800 Subject: [PATCH] Include headers properly (#28455) Originally, only `` is included. However, there are more types used in the file. This can be detected using `misc-include-cleaner` in `clang-tidy`. Co-authored-by: Tomasz Jankowski Co-authored-by: Michal Lukaszewski --- src/core/include/openvino/core/enum_mask.hpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/core/include/openvino/core/enum_mask.hpp b/src/core/include/openvino/core/enum_mask.hpp index ed9b91651c586d..679d6e3c176d07 100644 --- a/src/core/include/openvino/core/enum_mask.hpp +++ b/src/core/include/openvino/core/enum_mask.hpp @@ -4,7 +4,9 @@ #pragma once -#include +#include +#include +#include namespace ov {