summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authortradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-03-27 13:48:27 +0000
committertradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-03-27 13:48:27 +0000
commitdb21a92a3b47e936a722e3006461a4e40f64894f (patch)
treee67d1afccdc86833e345178b73d067af9c5ab75c /src/include
parent70811fe8ff28accb84fd23bf9217fab2ef61652b (diff)
Let CCTK_ArrayGroupSize() and CCTK_ArrayGroupSizeI() return const pointers
since these refer to static information. git-svn-id: http://svn.cactuscode.org/flesh/trunk@1494 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/include')
-rw-r--r--src/include/cctk_Comm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/cctk_Comm.h b/src/include/cctk_Comm.h
index 2a6da056..d0cc6eff 100644
--- a/src/include/cctk_Comm.h
+++ b/src/include/cctk_Comm.h
@@ -32,8 +32,8 @@ extern "C" {
int CCTK_QueryGroupStorage(cGH *,const char *);
int CCTK_QueryGroupStorageI(cGH *,int);
-int *CCTK_ArrayGroupSize(cGH *,int, const char *);
-int *CCTK_ArrayGroupSizeI(cGH *,int,int);
+const int *CCTK_ArrayGroupSize(cGH *,int, const char *);
+const int *CCTK_ArrayGroupSizeI(cGH *,int,int);
#ifdef __cplusplus
}