fixing compile bugs

This commit is contained in:
James McClure 2020-09-29 10:48:54 -04:00
parent 23f6c089f0
commit bfcd85af84
2 changed files with 6 additions and 2 deletions

View File

@ -1,6 +1,7 @@
/* /*
This class implements support for halo widths larger than 1 This class implements support for halo widths larger than 1
*/ */
#include "common/WideHalo.h"
ScaLBLWideHalo_Communicator::ScaLBLWideHalo_Communicator(std::shared_ptr <Domain> Dm, int width) ScaLBLWideHalo_Communicator::ScaLBLWideHalo_Communicator(std::shared_ptr <Domain> Dm, int width)
{ {
@ -383,5 +384,5 @@ void ScaLBLWideHalo_Communicator::Recv(double *data){
} }
inline int getHaloBlock(){ inline int getHaloBlock(){
}
} }

View File

@ -1,6 +1,9 @@
/* /*
This class implements support for halo widths larger than 1 This class implements support for halo widths larger than 1
*/ */
#ifndef WideHalo_H
#define WideHalo_H
#include "common/Domain.h"
class ScaLBLWideHalo_Communicator{ class ScaLBLWideHalo_Communicator{
public: public:
@ -92,5 +95,5 @@ private:
int *dvcRecvList_xyz,*dvcRecvList_Xyz,*dvcRecvList_xYz,*dvcRecvList_XYz; int *dvcRecvList_xyz,*dvcRecvList_Xyz,*dvcRecvList_xYz,*dvcRecvList_XYz;
int *dvcRecvList_xyZ,*dvcRecvList_XyZ,*dvcRecvList_xYZ,*dvcRecvList_XYZ; int *dvcRecvList_xyZ,*dvcRecvList_XyZ,*dvcRecvList_xYZ,*dvcRecvList_XYZ;
//...................................................................................... //......................................................................................
}; };
#endif