diff --git a/src/core/src/pass/manager.cpp b/src/core/src/pass/manager.cpp index e595e5cea7fbd7..c78e33dd8e41b9 100644 --- a/src/core/src/pass/manager.cpp +++ b/src/core/src/pass/manager.cpp @@ -176,8 +176,8 @@ class Profiler { std::cout << " "; } std::cout << std::setw(60) << left << name; - std::cout << std::setw(5) << right << stopwatch.get_milliseconds() << "ms " - << (applied ? "+" : "-") << std::endl; + std::cout << std::setw(5) << right << stopwatch.get_milliseconds() << "ms " << (applied ? "+" : "-") + << std::endl; } else if (m_file.is_open()) { if (is_pass_manager) { m_file << "m;" << name << ";" << stopwatch.get_timer_value().count() << ";" << (applied ? "1" : "0") @@ -190,7 +190,6 @@ class Profiler { OPENVINO_THROW("The output file for recording transformation statistics is closed. " "Recording of the statistics is not possible.") } - } }