aboutsummaryrefslogtreecommitdiff
path: root/src/types.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2026-02-19 23:58:49 -0500
committerBruce Hill <bruce@bruce-hill.com>2026-02-19 23:58:49 -0500
commitb780cff8e43bb9834ecd44f33ae8d33bb8528d82 (patch)
tree69067a393b73a29e2e811f782872c48532e987af /src/types.h
parentfde2d5876236c9048ee1112be90c8af41c910149 (diff)
Code cleanup
Diffstat (limited to 'src/types.h')
-rw-r--r--src/types.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/types.h b/src/types.h
index df5729ca..7057fef9 100644
--- a/src/types.h
+++ b/src/types.h
@@ -50,6 +50,7 @@ struct type_s {
NumType,
CStringType,
TextType,
+ PathType,
ListType,
TableType,
FunctionType,
@@ -64,7 +65,7 @@ struct type_s {
union {
struct {
- } UnknownType, AbortType, VoidType, MemoryType, BoolType;
+ } UnknownType, AbortType, VoidType, MemoryType, BoolType, PathType;
struct {
type_t *ret;
} ReturnType;