Skip to content
Snippets Groups Projects
Commit c57db9c2 authored by Cyril Moineau's avatar Cyril Moineau
Browse files

[Producer] Fix input_name to return empty list.

parent f5bf9426
No related branches found
No related tags found
1 merge request!35[Producer] Fix input_name to return empty list.
Pipeline #33016 passed
......@@ -133,7 +133,7 @@ public:
inline IOIndex_t nbDataInputs() const noexcept override final { return 0; };
inline IOIndex_t nbOutputs() const noexcept override final { return 1; };
static const std::vector<std::string> getInputsName(){
return {""};
return {};
}
static const std::vector<std::string> getOutputsName(){
return {"data_output"};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment