fixes regression: missing closing brace in map.h in c++ builds default tip

Wed, 01 Oct 2025 22:45:48 +0200

author
Mike Becker <universe@uap-core.de>
date
Wed, 01 Oct 2025 22:45:48 +0200
changeset 1411
838796848e12
parent 1410
be4071f5e9aa

fixes regression: missing closing brace in map.h in c++ builds

relates to #731

src/cx/map.h file | annotate | diff | comparison | revisions
--- 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

mercurial