Skip to content
Snippets Groups Projects
Commit ab59e9ee authored by Olivier BICHLER's avatar Olivier BICHLER
Browse files

Fixed signed

parent fa33e4c5
No related branches found
No related tags found
No related merge requests found
...@@ -65,7 +65,7 @@ Aidge::MetaOperator_Op::MetaOperator_Op(const char *type, const std::shared_ptr< ...@@ -65,7 +65,7 @@ Aidge::MetaOperator_Op::MetaOperator_Op(const char *type, const std::shared_ptr<
const std::vector<std::vector<std::pair<std::shared_ptr<Node>, IOIndex_t>>> outputNodeoutputs = const std::vector<std::vector<std::pair<std::shared_ptr<Node>, IOIndex_t>>> outputNodeoutputs =
outputNode->outputs(); outputNode->outputs();
for (int outputIdx = 0; outputIdx < outputNodeoutputs.size(); ++outputIdx) { for (size_t outputIdx = 0; outputIdx < outputNodeoutputs.size(); ++outputIdx) {
mOutputOps.push_back(std::make_pair(outputNode->getOperator(), outputIdx)); mOutputOps.push_back(std::make_pair(outputNode->getOperator(), outputIdx));
} }
} }
......
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