summaryrefslogtreecommitdiff
path: root/src/include/cctk_GroupsOnGH.h
diff options
context:
space:
mode:
authortradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-11-27 23:39:01 +0000
committertradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-11-27 23:39:01 +0000
commit5d62a93a47efbad36997035a234da4f8222aabc8 (patch)
treef4cccfadd13b65a05e895eee0e359f7b3ca55f4a /src/include/cctk_GroupsOnGH.h
parentccf91185d4d9a4e785aad16a3cd42d666bd4d73a (diff)
Turned the GH argument type in calls to CCTK_EnableGroup[{Storage}{Comm}]()
from 'void *' into 'cGH *'. Note that this is likely to change into a 'const cGH *' argument before the next release. This closes PR Cactus-820. git-svn-id: http://svn.cactuscode.org/flesh/trunk@2471 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/include/cctk_GroupsOnGH.h')
-rw-r--r--src/include/cctk_GroupsOnGH.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/cctk_GroupsOnGH.h b/src/include/cctk_GroupsOnGH.h
index 9f9158a9..f7e464b7 100644
--- a/src/include/cctk_GroupsOnGH.h
+++ b/src/include/cctk_GroupsOnGH.h
@@ -32,10 +32,10 @@ void *CCTK_VarDataPtr(const cGH *GH, int timelevel, const char *fullvarname);
void *CCTK_VarDataPtrI(const cGH *GH, int timelevel, int varindex);
void *CCTK_VarDataPtrB(const cGH *GH, int timelevel, int varindex, char *fullvarname);
-int CCTK_DisableGroupStorageI(void *GH, int group);
-int CCTK_DisableGroupCommI(void *GH, int group);
-int CCTK_EnableGroupStorageI(void *GH, int group);
-int CCTK_EnableGroupCommI(void *GH, int group);
+int CCTK_DisableGroupStorageI(cGH *GH, int group);
+int CCTK_DisableGroupCommI(cGH *GH, int group);
+int CCTK_EnableGroupStorageI(cGH *GH, int group);
+int CCTK_EnableGroupCommI(cGH *GH, int group);
int CCTK_GrouplbndGN(const cGH *GH, int dim, int *lbnd, const char *groupname);
int CCTK_GrouplbndVN(const cGH *GH, int dim, int *lbnd, const char *varname);