Try to fix opset error

This commit is contained in:
Ilya Churaev 2023-05-30 15:34:54 +04:00
parent e2441e9541
commit 35ff03c37e

View File

@ -31,7 +31,9 @@ namespace ngraph {
class NGRAPH_API_DEPRECATED NGRAPH_API OpSet : public ov::OpSet {
public:
explicit OpSet(const ov::OpSet& opset);
NGRAPH_SUPPRESS_DEPRECATED_START
OpSet(const ngraph::OpSet& opset);
NGRAPH_SUPPRESS_DEPRECATED_END
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) {