summaryrefslogtreecommitdiff
path: root/src/include/ParameterBindings.h
diff options
context:
space:
mode:
authorschnetter <schnetter@17b73243-c579-4c4c-a9d2-2d5706c11dac>2003-10-27 14:30:19 +0000
committerschnetter <schnetter@17b73243-c579-4c4c-a9d2-2d5706c11dac>2003-10-27 14:30:19 +0000
commit7cb1a39a6b61b5b0b2a0ef137b28496324713e1f (patch)
treea2716dac7974c01a337bd613affab9a0f1e7f705 /src/include/ParameterBindings.h
parentad499e6b74b32f2b250d7f93d3b91d78d0f7ce5e (diff)
Use different numerical values for the #defined enum-like constants.
git-svn-id: http://svn.cactuscode.org/flesh/trunk@3438 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/include/ParameterBindings.h')
-rw-r--r--src/include/ParameterBindings.h16
1 files changed, 9 insertions, 7 deletions
diff --git a/src/include/ParameterBindings.h b/src/include/ParameterBindings.h
index d0a6d10a..939c6828 100644
--- a/src/include/ParameterBindings.h
+++ b/src/include/ParameterBindings.h
@@ -44,12 +44,14 @@ void CCTKi_ParameterAccumulatorBase(const char *thorn,
}
#endif
-#define PARAMETER_KEYWORD 1
-#define PARAMETER_STRING 2
-#define PARAMETER_SENTENCE 3
-#define PARAMETER_INT 4
-#define PARAMETER_INTEGER 4
-#define PARAMETER_REAL 5
-#define PARAMETER_BOOLEAN 6
+/* These definitions must be identical to the ones in cctk_Parameter.h */
+#define PARAMETER_FIRST 701
+#define PARAMETER_KEYWORD 701
+#define PARAMETER_STRING 702
+#define PARAMETER_SENTENCE 703
+#define PARAMETER_INT 704
+#define PARAMETER_INTEGER 704
+#define PARAMETER_REAL 705
+#define PARAMETER_BOOLEAN 706
#endif