aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2025-03-17 21:49:25 +0200
committerKimplul <kimi.h.kuparinen@gmail.com>2025-03-17 21:49:25 +0200
commit17c7dbd9cec96862384c4323a0e36eb0558b580d (patch)
tree38edfb87113bc51bca0a6e97b085c30a60cd81e4 /include
parentf9c5985ce715cb2b353d87a19fed71d9904b60ed (diff)
downloadfwd-17c7dbd9cec96862384c4323a0e36eb0558b580d.tar.gz
fwd-17c7dbd9cec96862384c4323a0e36eb0558b580d.zip
fix some total moves
Diffstat (limited to 'include')
-rw-r--r--include/fwd/ast.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/fwd/ast.h b/include/fwd/ast.h
index 5f2b7cb..a253901 100644
--- a/include/fwd/ast.h
+++ b/include/fwd/ast.h
@@ -5,6 +5,7 @@
#define AST_H
#include <stddef.h>
+#include <string.h>
#include <assert.h>
#include <stdbool.h>
@@ -280,6 +281,10 @@ static inline bool is_trivially_copyable(struct type *type)
/** @todo primitive types */
return true;
+ case TYPE_ID:
+ /* very special, bad bad bad */
+ return strcmp(type->id, "int") == 0;
+
default: return false;
}