From cc53f4aa2c8a9d2432ec0f51b09946ceba1c8d99 Mon Sep 17 00:00:00 2001 From: Tommy Chiang Date: Thu, 16 Jan 2025 16:13:40 +0800 Subject: [PATCH] Use quotes include instead of brackets include (#28457) All othe headers files in `src/core/include/` all quotes include instead of brackets includes to include `openvino/op/util/symbolic_info.hpp`. This commit changes the only brackets include to quotes include. This allows user not need to install headers into the system path or need to pollute their system include. --- src/core/include/openvino/op/util/symbolic_info.hpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/core/include/openvino/op/util/symbolic_info.hpp b/src/core/include/openvino/op/util/symbolic_info.hpp index 38a6931d4c2ea3..dfb3170b793937 100644 --- a/src/core/include/openvino/op/util/symbolic_info.hpp +++ b/src/core/include/openvino/op/util/symbolic_info.hpp @@ -4,8 +4,7 @@ #pragma once -#include - +#include "openvino/core/descriptor/tensor.hpp" #include "openvino/core/node.hpp" #include "openvino/core/runtime_attribute.hpp" #include "openvino/core/visibility.hpp"