Remove reference to removed function. (#1192)

This commit is contained in:
Adam Osewski 2020-07-03 04:46:17 +02:00 committed by GitHub
parent aa8b364a5c
commit b72e56e51d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -86,7 +86,6 @@ namespace
using OpsetFunction = std::function<const ngraph::OpSet&()>;
static const std::map<std::string, OpsetFunction> s_opsets{
{"opset0", OpsetFunction(ngraph::get_opset0)},
{"opset1", OpsetFunction(ngraph::get_opset1)},
{"opset2", OpsetFunction(ngraph::get_opset2)},
{"opset3", OpsetFunction(ngraph::get_opset3)},
@ -101,7 +100,7 @@ namespace
return it->second();
}
const ngraph::OpSet& m_opset{ngraph::get_opset0()};
const ngraph::OpSet& m_opset{ngraph::get_opset4()};
};
}