# HG changeset patch # User Mike Becker # Date 1653644390 -7200 # Node ID 8f7d3e7b5b935ea015642a0871c029f1fe81ef60 # Parent 4373c2a90066b0ceb269dda2d15e98951884edfe fix missing static inline for map functions diff -r 4373c2a90066 -r 8f7d3e7b5b93 src/cx/map.h --- a/src/cx/map.h Sat May 21 12:10:25 2022 +0200 +++ b/src/cx/map.h Fri May 27 11:39:50 2022 +0200 @@ -190,7 +190,7 @@ * @return the value */ __attribute__((__nonnull__, __warn_unused_result__)) -void *cxMapGet( +static inline void *cxMapGet( CxMap const *map, CxDataPtr key ) { @@ -205,7 +205,7 @@ * @return the removed value */ __attribute__((__nonnull__, __warn_unused_result__)) -void *cxMapRemove( +static inline void *cxMapRemove( CxMap *map, CxDataPtr key ) {