From 17c7dbd9cec96862384c4323a0e36eb0558b580d Mon Sep 17 00:00:00 2001 From: Kimplul Date: Mon, 17 Mar 2025 21:49:25 +0200 Subject: fix some total moves --- include/fwd/ast.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'include') 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 +#include #include #include @@ -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; } -- cgit v1.2.3