diff options
Diffstat (limited to 'src/variable.h')
| -rw-r--r-- | src/variable.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/variable.h b/src/variable.h index 2e84ae1..83b6d44 100644 --- a/src/variable.h +++ b/src/variable.h | |||
| @@ -25,16 +25,16 @@ friend Bu::Formatter &operator<<( Bu::Formatter &f, const Variable &v ); | |||
| 25 | public: | 25 | public: |
| 26 | enum Type | 26 | enum Type |
| 27 | { | 27 | { |
| 28 | tNull, | 28 | tNull = 0, |
| 29 | tBool, | 29 | tBool = 1, |
| 30 | tInt, | 30 | tInt = 2, |
| 31 | tFloat, | 31 | tFloat = 3, |
| 32 | tSituation, | 32 | tSituation = 4, |
| 33 | tVariable, | 33 | tVariable = 5, |
| 34 | tVarPtr, | 34 | tVarPtr = 6, |
| 35 | tList, | 35 | tList = 7, |
| 36 | tDictionary, | 36 | tDictionary = 8, |
| 37 | tString, | 37 | tString = 9, |
| 38 | }; | 38 | }; |
| 39 | 39 | ||
| 40 | public: | 40 | public: |
