Skip to content
Snippets Groups Projects
Commit fe598818 authored by Olivier BICHLER's avatar Olivier BICHLER Committed by Maxence Naud
Browse files

Coding style

parent d0ee078d
No related branches found
No related tags found
1 merge request!325[Upd] Patch v0.5.1
...@@ -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