1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-11-10 07:55:35 +00:00

Rename some files to make naming consistent

This commit is contained in:
Peter Boyle 2015-04-03 04:58:03 +01:00
parent 7b97e50b7b
commit 06843d4574
4 changed files with 16 additions and 0 deletions

16
Grid_cshift.h Normal file
View File

@ -0,0 +1,16 @@
#ifndef _GRID_CSHIFT_H_
#define _GRID_CSHIFT_H_
#include <Grid_cshift_common.h>
#ifdef GRID_COMMS_NONE
#include <Grid_cshift_none.h>
#endif
#ifdef GRID_COMMS_FAKE
#include <Grid_cshift_fake.h>
#endif
#ifdef GRID_COMMS_MPI
#include <Grid_cshift_mpi.h>
#endif
#endif