diff options
| author | gingerBill <bill@gingerbill.org> | 2021-07-10 23:51:37 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-07-10 23:51:37 +0100 |
| commit | d9e6ade03007f4ede6471a6ada23b2469e2f052d (patch) | |
| tree | ef13bc1d0b2b547abb3403c1f0e48226910c6ecc /src/exact_value.cpp | |
| parent | 690374d4dec42365fd28cd6f9f1361697fdd7b9f (diff) | |
Add experimental support for a threaded semantic checker to `-threaded-checker`
Diffstat (limited to 'src/exact_value.cpp')
| -rw-r--r-- | src/exact_value.cpp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/exact_value.cpp b/src/exact_value.cpp index 12c14b4fa..9bcaf76de 100644 --- a/src/exact_value.cpp +++ b/src/exact_value.cpp @@ -27,18 +27,18 @@ Quaternion256 quaternion256_inverse(Quaternion256 x) { enum ExactValueKind { - ExactValue_Invalid, - - ExactValue_Bool, - ExactValue_String, - ExactValue_Integer, - ExactValue_Float, - ExactValue_Complex, - ExactValue_Quaternion, - ExactValue_Pointer, - ExactValue_Compound, // TODO(bill): Is this good enough? - ExactValue_Procedure, // TODO(bill): Is this good enough? - ExactValue_Typeid, + ExactValue_Invalid = 0, + + ExactValue_Bool = 1, + ExactValue_String = 2, + ExactValue_Integer = 3, + ExactValue_Float = 4, + ExactValue_Complex = 5, + ExactValue_Quaternion = 6, + ExactValue_Pointer = 7, + ExactValue_Compound = 8, // TODO(bill): Is this good enough? + ExactValue_Procedure = 9, // TODO(bill): Is this good enough? + ExactValue_Typeid = 10, ExactValue_Count, }; |