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

Fix compilation issue with Move keyword.

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