Compare commits

..

2 Commits

Author SHA1 Message Date
Gregory Wells
7d818db7f9 add extend 2d class 2025-09-17 13:50:39 -04:00
Gregory Wells
9833dc3c12 fix warning 2025-08-29 13:42:27 -04:00
2 changed files with 3 additions and 3 deletions

View File

@@ -4,10 +4,9 @@
GN_ARRAY_LIST_DEFINITION(uint32_t) GN_ARRAY_LIST_DEFINITION(uint32_t)
GN_ARRAY_LIST_DEFINITION(int) GN_ARRAY_LIST_DEFINITION(int)
// note this is annoying but I dont wana warnings from this file
void tester() { void tester() {
uint32_tArrayList list = uint32_tArrayListCreate(); uint32_tArrayList list = uint32_tArrayListCreate();
uint32_tArrayListResize(list, 1); uint32_tArrayListResize(list, 1);
void* m = malloc(0);
malloc(0);
} }

View File

@@ -17,6 +17,7 @@ typedef struct gnUInt2 {
struct { uint32_t x, y; }; struct { uint32_t x, y; };
}; };
} gnUInt2; } gnUInt2;
typedef gnUInt2 gnExtent2D;
typedef struct gnInt2 { typedef struct gnInt2 {
union { union {