1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-11-09 23:45:36 +00:00

virtual destructor for LinearOperator

This commit is contained in:
Antonin Portelli 2023-04-07 14:30:38 +01:00
parent 4072408b6f
commit 5d7e0d18b9

View File

@ -542,6 +542,7 @@ public:
(*this)(in[i], out[i]);
}
}
virtual ~LinearFunction(){};
};
template<class Field> class IdentityLinearFunction : public LinearFunction<Field> {