aboutsummaryrefslogtreecommitdiff
path: root/src/sexp.h
diff options
context:
space:
mode:
authorMistivia <i@mistivia.com>2025-06-26 02:32:34 +0800
committerMistivia <i@mistivia.com>2025-06-26 02:33:07 +0800
commit99f3260a98a6b727bfa64ff66c19ca051acef450 (patch)
tree1416f98814bac3b3e1bafb478a966d5be9b235ae /src/sexp.h
parent01529085de32d2e718992a26f8215b269a831d26 (diff)
use hash table in top level symbol lookup
Diffstat (limited to 'src/sexp.h')
-rw-r--r--src/sexp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sexp.h b/src/sexp.h
index 2923088..d606acf 100644
--- a/src/sexp.h
+++ b/src/sexp.h
@@ -10,7 +10,7 @@ struct sexp;
typedef struct sexp SExp;
typedef struct {
- int idx;
+ int32_t idx;
} SExpRef;
typedef struct {