We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3ded2f commit 7cd3c8eCopy full SHA for 7cd3c8e
src/core/include/openvino/core/any.hpp
@@ -541,6 +541,8 @@ class OPENVINO_API Any {
541
template <typename... Args>
542
Impl(Args&&... args) : value(std::forward<Args>(args)...) {}
543
544
+ virtual ~Impl(){};
545
+
546
const std::type_info& type_info() const override {
547
return typeid(T);
548
}
src/core/include/openvino/op/util/variable_extension.hpp
@@ -38,6 +38,9 @@ class OPENVINO_API VariableExtension {
38
/// \brief Returns the identifier of corresponding variable.
39
virtual std::string get_variable_id() const = 0;
40
41
+protected:
42
+ virtual ~VariableExtension(){};
43
44
protected:
45
std::shared_ptr<Variable> m_variable;
46
};
0 commit comments