aboutsummaryrefslogtreecommitdiff
path: root/src/Storage.c
diff options
context:
space:
mode:
authortradke <tradke@b61c5cb5-eaca-4651-9a7a-d64986f99364>2001-11-05 15:01:47 +0000
committertradke <tradke@b61c5cb5-eaca-4651-9a7a-d64986f99364>2001-11-05 15:01:47 +0000
commit58fce8ad2b83e344c5cab6401ddcf1e2c8d25cbf (patch)
tree48172307cb5ff3a2699a2e3bdd8937c8717c5248 /src/Storage.c
parent4017bb013c47a27a265a280690b9144efecf9405 (diff)
Added const qualifier to the 'cGH *' argument of some more overloadable functions.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGH/trunk@363 b61c5cb5-eaca-4651-9a7a-d64986f99364
Diffstat (limited to 'src/Storage.c')
-rw-r--r--src/Storage.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Storage.c b/src/Storage.c
index 9c8cf90..8666ed4 100644
--- a/src/Storage.c
+++ b/src/Storage.c
@@ -71,7 +71,7 @@ void PUGHi_PrintStorageReport (void);
@var GH
@vdesc Pointer to CCTK grid hierarchy
- @vtype cGH *
+ @vtype const cGH *
@vio in
@endvar
@var dir
@@ -96,7 +96,7 @@ void PUGHi_PrintStorageReport (void);
NULL if given direction or group index/name are invalid
@endreturndesc
@@*/
-const int *PUGH_ArrayGroupSize (cGH *GH,
+const int *PUGH_ArrayGroupSize (const cGH *GH,
int dir,
int group,
const char *groupname)
@@ -171,7 +171,7 @@ const int *PUGH_ArrayGroupSize (cGH *GH,
@var GH
@vdesc Pointer to CCTK grid hierarchy
- @vtype cGH *
+ @vtype const cGH *
@vio in
@endvar
@var group
@@ -192,7 +192,7 @@ const int *PUGH_ArrayGroupSize (cGH *GH,
-1 if given group index/name is invalid
@endreturndesc
@@*/
-int PUGH_QueryGroupStorage (cGH *GH, int group, const char *groupname)
+int PUGH_QueryGroupStorage (const cGH *GH, int group, const char *groupname)
{
int first_var;
int storage;