Fix build for macos and android-arm64 (#15068)

Signed-off-by: Kazantsev, Roman <roman.kazantsev@intel.com>

Signed-off-by: Kazantsev, Roman <roman.kazantsev@intel.com>
This commit is contained in:
Roman Kazantsev 2023-01-12 15:40:11 +04:00 committed by GitHub
parent b8d51a9e1b
commit 40627c99f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -127,11 +127,11 @@ public:
return nullptr;
}
std::vector<std::string> get_input_names() const {
std::vector<std::string> get_input_names() const override {
return m_input_names;
}
std::vector<std::string> get_output_names() const {
std::vector<std::string> get_output_names() const override {
return m_output_names;
}
};