Commit 5a54c263f17856a985eef43b5956de8e682d4fce

Thomas de Grivel 2024-07-04T10:05:58

sort s_struct type

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
diff --git a/libc3/types.h b/libc3/types.h
index 91b4c43..0eabccd 100644
--- a/libc3/types.h
+++ b/libc3/types.h
@@ -297,9 +297,9 @@ struct quote {
 };
 
 struct struct_ {
-  const s_struct_type *type;
-  s_tag *tag;
   void *data;
+  s_tag *tag;
+  const s_struct_type *type;
 };
 
 struct sym_list {