# HG changeset patch # User Mike Becker # Date 1681671019 -7200 # Node ID 502105523db71d19130cb06616d91fd06f68fb6a # Parent 19379743e5a0f101004424a4ccffc96ef8c4828c fix common.h include problems - fixes #255 diff -r 19379743e5a0 -r 502105523db7 src/cx/collection.h --- a/src/cx/collection.h Sun Apr 09 20:00:44 2023 +0200 +++ b/src/cx/collection.h Sun Apr 16 20:50:19 2023 +0200 @@ -37,7 +37,6 @@ #ifndef UCX_COLLECTION_H #define UCX_COLLECTION_H -#include "common.h" #include "allocator.h" #include "iterator.h" diff -r 19379743e5a0 -r 502105523db7 src/cx/hash_key.h --- a/src/cx/hash_key.h Sun Apr 09 20:00:44 2023 +0200 +++ b/src/cx/hash_key.h Sun Apr 16 20:50:19 2023 +0200 @@ -38,7 +38,7 @@ #ifndef UCX_HASH_KEY_H #define UCX_HASH_KEY_H -#include "stddef.h" +#include "common.h" #ifdef __cplusplus extern "C" { diff -r 19379743e5a0 -r 502105523db7 src/cx/list.h --- a/src/cx/list.h Sun Apr 09 20:00:44 2023 +0200 +++ b/src/cx/list.h Sun Apr 16 20:50:19 2023 +0200 @@ -37,6 +37,7 @@ #ifndef UCX_LIST_H #define UCX_LIST_H +#include "common.h" #include "collection.h" #ifdef __cplusplus diff -r 19379743e5a0 -r 502105523db7 src/cx/map.h --- a/src/cx/map.h Sun Apr 09 20:00:44 2023 +0200 +++ b/src/cx/map.h Sun Apr 16 20:50:19 2023 +0200 @@ -37,6 +37,7 @@ #ifndef UCX_MAP_H #define UCX_MAP_H +#include "common.h" #include "collection.h" #include "hash_key.h" diff -r 19379743e5a0 -r 502105523db7 src/cx/mempool.h --- a/src/cx/mempool.h Sun Apr 09 20:00:44 2023 +0200 +++ b/src/cx/mempool.h Sun Apr 16 20:50:19 2023 +0200 @@ -37,6 +37,7 @@ #ifndef UCX_MEMPOOL_H #define UCX_MEMPOOL_H +#include "common.h" #include "allocator.h" #ifdef __cplusplus