Merge pull request #21715 from ilyachur:change_type_info_creation

This commit is contained in:
Alexander Alekhin 2022-03-14 09:18:58 +00:00
commit 5bf3c1df24

View File

@ -80,7 +80,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<uint64_t>(0)};
return type_info;
}