Skip to content
Snippets Groups Projects

[Producer] Fix input_name to return empty list.

Merged Cyril Moineau requested to merge producerInputFix into main
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -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"};
Loading