Wed, 01 Oct 2025 22:45:48 +0200
fixes regression: missing closing brace in map.h in c++ builds relates to #731
--- a/src/cx/map.h Wed Oct 01 22:43:48 2025 +0200 +++ b/src/cx/map.h Wed Oct 01 22:45:48 2025 +0200 @@ -574,4 +574,8 @@ */ #define cxMapRemoveAndGet(map, key, targetbuf) cx_map_remove(map, CX_HASH_KEY(key), targetbuf) +#ifdef __cplusplus +} // extern "C" +#endif + #endif // UCX_MAP_H