Skip to content

Commit

Permalink
Remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
javier-intel committed Oct 10, 2024
1 parent a532d32 commit a95ed17
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/frontends/onnx/frontend/src/frontend.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -228,15 +228,12 @@ bool FrontEnd::supported_impl(const std::vector<ov::Any>& variants) const {
return is_valid_model(*stream);
}
if (variants[0].is<ModelProtoPtr>()) {
std::cerr << "shared_ptr<ModelProto> is supported\n";
return true;
}
if (variants[0].is<ModelProto*>()) {
std::cerr << "ModelProto* is supported\n";
return true;
}
if (variants[0].is<uint64_t>()) {
std::cerr << "uint64_t as a ModelProto* is supported\n";
return true;
}
return false;
Expand Down

0 comments on commit a95ed17

Please sign in to comment.