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

fix : removed unused variable

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