1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-09 00:00:04 +01:00

lws_map: remove typedef for some toolchains

This backports a change that has been in main for a while
This commit is contained in:
Andy Green 2024-09-23 11:06:16 +01:00
parent 7467274d4d
commit 8c8a2a5be3

View file

@ -29,11 +29,11 @@ typedef struct lws_map_hashtable {
lws_dll2_owner_t ho;
} lws_map_hashtable_t;
typedef struct lws_map {
struct lws_map {
lws_map_info_t info;
/* array of info.modulo x lws_map_hashtable_t overallocated */
} lws_map_t;
};
typedef struct lws_map_item {
lws_dll2_t list; /* owned by hashtable */