From 2c875062156bb7129214b92bcce2412a53b2a7ad Mon Sep 17 00:00:00 2001 From: "River.Li" Date: Mon, 23 Oct 2023 13:20:24 +0800 Subject: [PATCH] clang issue --- src/bindings/c/src/common.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/bindings/c/src/common.h b/src/bindings/c/src/common.h index cc047669aef793..3dc92faba4ddbd 100644 --- a/src/bindings/c/src/common.h +++ b/src/bindings/c/src/common.h @@ -14,16 +14,16 @@ #include "openvino/core/except.hpp" #include "openvino/openvino.hpp" -#define CATCH_IE_EXCEPTION(StatusCode, ExceptionType) \ - catch (const InferenceEngine::ExceptionType& ex) { \ - dup_last_err_msg(ex.what()); \ - return ov_status_e::StatusCode; \ +#define CATCH_IE_EXCEPTION(StatusCode, ExceptionType) \ + catch (const InferenceEngine::ExceptionType& ex) { \ + dup_last_err_msg(ex.what()); \ + return ov_status_e::StatusCode; \ } -#define CATCH_OV_EXCEPTION(StatusCode, ExceptionType) \ - catch (const ov::ExceptionType& ex) { \ - dup_last_err_msg(ex.what()); \ - return ov_status_e::StatusCode; \ +#define CATCH_OV_EXCEPTION(StatusCode, ExceptionType) \ + catch (const ov::ExceptionType& ex) { \ + dup_last_err_msg(ex.what()); \ + return ov_status_e::StatusCode; \ } #define CATCH_OV_EXCEPTIONS \