summaryrefslogtreecommitdiff
path: root/src/include/CommOverloadables.h
diff options
context:
space:
mode:
authortradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-11-05 14:58:55 +0000
committertradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-11-05 14:58:55 +0000
commit7429addb5b7f80c1035b59afa239996ff1a58c65 (patch)
tree1ba6dde297325a705161420eacd2a2151db10fa5 /src/include/CommOverloadables.h
parent295247798ad3e1ef841ac7e04d219ac3cb146e8b (diff)
Adding a const qualifier to the 'cGH *' argument of some flesh routines
and for I/O method registration. You will also need to update the I/O thorns which I will commit changes to now. git-svn-id: http://svn.cactuscode.org/flesh/trunk@2452 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/include/CommOverloadables.h')
-rw-r--r--src/include/CommOverloadables.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/CommOverloadables.h b/src/include/CommOverloadables.h
index a4b2c604..96d9741a 100644
--- a/src/include/CommOverloadables.h
+++ b/src/include/CommOverloadables.h
@@ -70,19 +70,19 @@ OVERLOADABLE(Abort)
OVERLOADABLE(SetupGH)
#undef ARGUMENTS
-#define ARGUMENTS cGH *GH, int dir, int group, const char *groupname
+#define ARGUMENTS const cGH *GH, int dir, int group, const char *groupname
#undef RETURN_TYPE
#define RETURN_TYPE const int *
OVERLOADABLE(ArrayGroupSizeB)
#undef ARGUMENTS
-#define ARGUMENTS cGH *GH, int group, const char *groupname
+#define ARGUMENTS const cGH *GH, int group, const char *groupname
#undef RETURN_TYPE
#define RETURN_TYPE int
OVERLOADABLE(QueryGroupStorageB)
#undef ARGUMENTS
-#define ARGUMENTS cGH *GH, int group, cGroupDynamicData *data
+#define ARGUMENTS const cGH *GH, int group, cGroupDynamicData *data
#undef RETURN_TYPE
#define RETURN_TYPE int
OVERLOADABLE(GroupDynamicData)