Skip to content

Commit 56032cf

Browse files
fixed bug in move constructor in WarpXSovlerVec.
1 parent a8b492d commit 56032cf

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Source/FieldSolver/ImplicitSolvers/WarpXSolverVec.H

+1
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@ public:
127127
{
128128
if (this != &a_vec) {
129129
m_field_vec = std::move(a_vec.m_field_vec);
130+
m_is_defined = true;
130131
}
131132
return *this;
132133
}

0 commit comments

Comments
 (0)