src/cx/map.h

changeset 550
89b2a83728b1
parent 549
d7f0b5a9a985
child 551
2946e13c89a4
     1.1 --- a/src/cx/map.h	Wed May 18 16:26:32 2022 +0200
     1.2 +++ b/src/cx/map.h	Thu May 19 14:30:20 2022 +0200
     1.3 @@ -88,7 +88,7 @@
     1.4      int (*put)(
     1.5              CxMap *map,
     1.6              CxDataPtr key,
     1.7 -            void const *value
     1.8 +            void *value
     1.9      );
    1.10  
    1.11      /**
    1.12 @@ -105,7 +105,7 @@
    1.13       */
    1.14      __attribute__((__nonnull__, __warn_unused_result__))
    1.15      void *(*remove)(
    1.16 -            CxMap const *map,
    1.17 +            CxMap *map,
    1.18              CxDataPtr key
    1.19      );
    1.20  
    1.21 @@ -177,7 +177,7 @@
    1.22  static inline int cxMapPut(
    1.23          CxMap *map,
    1.24          CxDataPtr key,
    1.25 -        void const *value
    1.26 +        void *value
    1.27  ) {
    1.28      return map->cl->put(map, key, value);
    1.29  }

mercurial