Skip to content

Commit

Permalink
Fix build warning
Browse files Browse the repository at this point in the history
  • Loading branch information
riverlijunjie committed Jan 30, 2024
1 parent 0175de1 commit 71b53cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/inference/src/dev/plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
OPENVINO_ASSERT(m_ptr != nullptr, "OpenVINO Runtime Plugin was not initialized."); \
try { \
__VA_ARGS__; \
} catch (const ov::NotImplemented& ex) { \
} catch (const ov::NotImplemented&) { \
OPENVINO_NOT_IMPLEMENTED; \
} catch (const InferenceEngine::NotImplemented& ex) { \
} catch (const InferenceEngine::NotImplemented&) { \
OPENVINO_NOT_IMPLEMENTED; \
} catch (const std::exception& ex) { \
OPENVINO_THROW(ex.what()); \
Expand Down

0 comments on commit 71b53cb

Please sign in to comment.