Skip to content
Snippets Groups Projects
Commit 58f8fa8d authored by Cyril Moineau's avatar Cyril Moineau Committed by Maxence Naud
Browse files

Fix compilation issue with Move keyword.

parent 962ba3c3
No related branches found
No related tags found
No related merge requests found
......@@ -39,11 +39,7 @@ public:
Move_Op(const Move_Op& op)
: OperatorTensor(op)
{
if (op.mImpl){
SET_IMPL_MACRO(Move_Op, *this, op.mOutputs[0]->getImpl()->backend());
}else{
mImpl = nullptr;
}
mImpl = op.mImpl ? Registrar<Move_Op>::create({mInputs[0]->getImpl()->backend(), mOutputs[0]->getImpl()->backend()})(*this) : nullptr;
}
/**
......
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