From d9e6ade03007f4ede6471a6ada23b2469e2f052d Mon Sep 17 00:00:00 2001 From: gingerBill Date: Sat, 10 Jul 2021 23:51:37 +0100 Subject: Add experimental support for a threaded semantic checker to `-threaded-checker` --- src/exact_value.cpp | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'src/exact_value.cpp') 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, }; -- cgit v1.2.3