Skip to content
Snippets Groups Projects
Commit 7c3fabbe authored by Maxence Naud's avatar Maxence Naud
Browse files

Apply 1 suggestion(s) to 1 file(s)

parent d01920a4
No related branches found
No related tags found
1 merge request!67dev
Pipeline #36847 failed
...@@ -110,7 +110,7 @@ public: ...@@ -110,7 +110,7 @@ public:
if (getAttr<ProdAttr::Constant>()) { if (getAttr<ProdAttr::Constant>()) {
AIDGE_THROW_OR_ABORT(std::runtime_error, "Producer is constant, cannot update output."); AIDGE_THROW_OR_ABORT(std::runtime_error, "Producer is constant, cannot update output.");
} }
OperatorTensor::setOutput(outputIdx, data); OperatorTensor::setOutput(outputIdx, std::move(data));
} }
void setOutput(const Aidge::IOIndex_t outputIdx, const std::shared_ptr<Aidge::Data>& data) override { void setOutput(const Aidge::IOIndex_t outputIdx, const std::shared_ptr<Aidge::Data>& data) override {
......
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