Skip to content
Snippets Groups Projects
Commit 3d6a310a authored by Grégoire Kubler's avatar Grégoire Kubler
Browse files

fix : replaced unused var call

parent a858b561
No related branches found
No related tags found
2 merge requests!212Version 0.3.0,!116feat/release_pip
Pipeline #50769 failed
...@@ -25,7 +25,7 @@ void Aidge::Concat_OpImpl::forward() { ...@@ -25,7 +25,7 @@ void Aidge::Concat_OpImpl::forward() {
assert(op.getInput(0) && "missing input in Concat operator"); assert(op.getInput(0) && "missing input in Concat operator");
for (IOIndex_t i = 1; i < mOp.nbInputs(); ++i) { for (IOIndex_t i = 1; i < mOp.nbInputs(); ++i) {
assert(op.getInput(i) && "missing input in Concat operator"); assert(op.getInput(i) && "missing input in Concat operator");
assert(op.getInput(i)->dataType() == datatypeFirstInput); assert(op.getInput(i)->dataType() == op.getInput(0)->dataType());
} }
DimSize_t outputAxisValue = 0; DimSize_t outputAxisValue = 0;
......
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