From b8cc8a0c8cd9fcbce6d9b59b5083d7f7da360c9f Mon Sep 17 00:00:00 2001 From: Tommy Chiang Date: Wed, 15 Jan 2025 12:17:54 +0000 Subject: [PATCH] Include headers properly Originally, only `` is included. However, there are more types used in the file. This can be detected using `misc-include-cleaner` in `clang-tidy`. --- 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 {