fix: dont copy unset map nodes

This commit is contained in:
2023-12-08 04:24:47 +01:00
parent b203c93f47
commit a76c093c9f
3 changed files with 13 additions and 12 deletions

4
map.h
View File

@@ -6,8 +6,8 @@
#ifndef MAP_H
struct _Map;
typedef struct _Map Map;
struct Map_struct;
typedef struct Map_struct Map;
Map* map_create();