Fix void function returns value kw issue (#15520)
Co-authored-by: Ilya Lavrenov <ilya.lavrenov@intel.com>
This commit is contained in:
parent
46843777fa
commit
dddec34f35
|
|
@ -24,7 +24,7 @@ public:
|
|||
OpSet() = default;
|
||||
/// \brief Insert an op into the opset with a particular name and factory
|
||||
void insert(const std::string& name, const NodeTypeInfo& type_info, FactoryRegistry<Node>::Factory factory) {
|
||||
return ov::OpSet::insert(name, type_info, std::move(factory));
|
||||
ov::OpSet::insert(name, type_info, std::move(factory));
|
||||
}
|
||||
/// \brief Insert OP_TYPE into the opset with a special name and the default factory
|
||||
template <typename OP_TYPE>
|
||||
|
|
|
|||
Loading…
Reference in New Issue