Fix void function returns value kw issue (#15520)

Co-authored-by: Ilya Lavrenov <ilya.lavrenov@intel.com>
This commit is contained in:
Iosif Dirlea 2023-02-08 10:40:21 +02:00 committed by GitHub
parent 46843777fa
commit dddec34f35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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>