From 4b294e47144da00ae4b9568fed39569d187ce07e Mon Sep 17 00:00:00 2001 From: LLLL Colonq Date: Fri, 27 Mar 2026 17:23:26 -0400 Subject: Fix doubles --- include/lcq/pit/runtime.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/lcq') diff --git a/include/lcq/pit/runtime.h b/include/lcq/pit/runtime.h index 4132231..f946a71 100644 --- a/include/lcq/pit/runtime.h +++ b/include/lcq/pit/runtime.h @@ -9,7 +9,7 @@ struct pit_runtime; /* nil is always the symbol with index 0 */ #define PIT_NIL 0xfff4000000000000 /* 0b1111111111110100000000000000000000000000000000000000000000000000 */ -#define PIT_T (PIT_NIL+sizeof(pit_symtab_entry)) +#define PIT_T (PIT_NIL+1) enum pit_value_sort { PIT_VALUE_SORT_DOUBLE = 0, /* 0b00 - double */ -- cgit v1.2.3