From c57db9c2f3eb7f6685adddded360a2e63651f752 Mon Sep 17 00:00:00 2001 From: cmoineau <cyril.moineau@cea.fr> Date: Wed, 18 Oct 2023 06:57:24 +0000 Subject: [PATCH] [Producer] Fix input_name to return empty list. --- include/aidge/operator/Producer.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/aidge/operator/Producer.hpp b/include/aidge/operator/Producer.hpp index c263ae139..d747b3406 100644 --- a/include/aidge/operator/Producer.hpp +++ b/include/aidge/operator/Producer.hpp @@ -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"}; -- GitLab