Fixed some stuff for the Zmq process

This commit is contained in:
2022-01-19 14:56:44 +01:00
parent bfccc004e8
commit 5403656e79
12 changed files with 221 additions and 204 deletions

View File

@ -30,7 +30,7 @@ template <class dataType> class ghostSummation {
ghost=new double[nx*ny];
}
~ghostSummation() {delete [] ghost;};
virtual ~ghostSummation() {delete [] ghost;};
virtual ghostSummation *Clone() {
return new ghostSummation(this);