From 5498491e2b4710d84a5ca4f8a98a8ee5b45f7663 Mon Sep 17 00:00:00 2001 From: Anton Voronov Date: Fri, 29 Sep 2023 14:50:07 +0000 Subject: [PATCH] code style fix --- .../op_conversions/convert_gather_downgrade.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/common/transformations/src/transformations/op_conversions/convert_gather_downgrade.cpp b/src/common/transformations/src/transformations/op_conversions/convert_gather_downgrade.cpp index f5d47305440421..08bdeb9457d901 100644 --- a/src/common/transformations/src/transformations/op_conversions/convert_gather_downgrade.cpp +++ b/src/common/transformations/src/transformations/op_conversions/convert_gather_downgrade.cpp @@ -92,7 +92,8 @@ pass::ConvertGather8ToGather7::ConvertGather8ToGather7() { std::shared_ptr new_indices_constant; if (do_indices_normalization) { - new_indices_constant = std::make_shared(indices_constant->get_element_type(), indices_constant->get_shape(), indices); + new_indices_constant = std::make_shared(indices_constant->get_element_type(), + indices_constant->get_shape(), indices); } else { new_indices_constant = indices_constant; }