From 419918076e95b3669e6879abadbabe3145f6053c Mon Sep 17 00:00:00 2001 From: Ilya Churaev Date: Mon, 14 Mar 2022 08:28:43 +0300 Subject: [PATCH] Changed call of NodeTypeInfo constructor --- modules/dnn/src/ie_ngraph.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/dnn/src/ie_ngraph.cpp b/modules/dnn/src/ie_ngraph.cpp index c646c1fe3a..ba881a8023 100644 --- a/modules/dnn/src/ie_ngraph.cpp +++ b/modules/dnn/src/ie_ngraph.cpp @@ -77,7 +77,7 @@ class NgraphCustomOp: public ngraph::op::Op { public: const ngraph::NodeTypeInfo& get_type_info() const override { - static constexpr ngraph::NodeTypeInfo type_info{kOpenCVLayersType, 0}; + static constexpr ngraph::NodeTypeInfo type_info{kOpenCVLayersType, static_cast(0)}; return type_info; } -- GitLab