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

Coding style

parent c50a7d1f
No related branches found
No related tags found
2 merge requests!333[Fix] Attribute snake case,!322Fix Generic and Meta op copy constructor issues
...@@ -118,12 +118,12 @@ public: ...@@ -118,12 +118,12 @@ public:
*/ */
Operator(const Operator& op): Operator(const Operator& op):
std::enable_shared_from_this<Operator>(), std::enable_shared_from_this<Operator>(),
mType(op.mType),
mOperatorType(op.mOperatorType), mOperatorType(op.mOperatorType),
mInputsCategory(op.mInputsCategory), mInputsCategory(op.mInputsCategory),
mNbOut(op.mNbOut), mNbOut(op.mNbOut),
mBackEdges(op.mBackEdges) mBackEdges(op.mBackEdges)
{ {
mType = op.mType;
mImpl = nullptr; mImpl = nullptr;
// Implementation is never cloned. It is up to the non-abstract Operator copy-constructor to create a new implementation matching the copied Operator implementation. // Implementation is never cloned. It is up to the non-abstract Operator copy-constructor to create a new implementation matching the copied Operator implementation.
// See https://gitlab.eclipse.org/eclipse/aidge/aidge_core/-/merge_requests/8#note_1214050 for the discussion. // See https://gitlab.eclipse.org/eclipse/aidge/aidge_core/-/merge_requests/8#note_1214050 for the discussion.
......
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