Skip to content
Snippets Groups Projects
Unverified Commit da32e595 authored by René Fritze's avatar René Fritze
Browse files

[operators] fix logger uninitialized in copy

parent bc6d90da
No related branches found
No related tags found
1 merge request!10Draft: consolidate refactoring work
...@@ -267,7 +267,8 @@ public: ...@@ -267,7 +267,8 @@ public:
} // ForwardOperatorAssembler(...) } // ForwardOperatorAssembler(...)
ForwardOperatorAssembler(const ThisType& other) ForwardOperatorAssembler(const ThisType& other)
: operator_(other.operator_) : BaseType(other.logger.prefix, other.logger.state)
, operator_(other.operator_)
, source_(other.source_->copy_as_grid_function()) , source_(other.source_->copy_as_grid_function())
, range_vector_(other.range_vector_) , range_vector_(other.range_vector_)
, param_(other.param_) , param_(other.param_)
......
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