This is an automated email from the ASF dual-hosted git repository. pnoltes pushed a commit to branch feature/509-remove-cpputests in repository https://gitbox.apache.org/repos/asf/celix.git
commit 36d8c40c5d75b65f718941965ccfff64e3d5bb24 Author: Pepijn Noltes <[email protected]> AuthorDate: Thu Jan 4 14:26:45 2024 +0100 Remove unneeded export macros in hash_map_private.h --- libs/utils/src/hash_map_private.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/libs/utils/src/hash_map_private.h b/libs/utils/src/hash_map_private.h index 32e1233a..2018404d 100644 --- a/libs/utils/src/hash_map_private.h +++ b/libs/utils/src/hash_map_private.h @@ -33,13 +33,13 @@ extern "C" { #endif -CELIX_UTILS_DEPRECATED_EXPORT unsigned int hashMap_hashCode(const void* toHash); -CELIX_UTILS_DEPRECATED_EXPORT int hashMap_equals(const void* toCompare, const void* compare); +unsigned int hashMap_hashCode(const void* toHash); +int hashMap_equals(const void* toCompare, const void* compare); -CELIX_UTILS_DEPRECATED_EXPORT void hashMap_resize(hash_map_pt map, int newCapacity); -CELIX_UTILS_DEPRECATED_EXPORT hash_map_entry_pt hashMap_removeEntryForKey(hash_map_pt map, const void* key); -CELIX_UTILS_DEPRECATED_EXPORT hash_map_entry_pt hashMap_removeMapping(hash_map_pt map, hash_map_entry_pt entry); -CELIX_UTILS_DEPRECATED_EXPORT void hashMap_addEntry(hash_map_pt map, int hash, void* key, void* value, int bucketIndex); +void hashMap_resize(hash_map_pt map, int newCapacity); +hash_map_entry_pt hashMap_removeEntryForKey(hash_map_pt map, const void* key); +hash_map_entry_pt hashMap_removeMapping(hash_map_pt map, hash_map_entry_pt entry); +void hashMap_addEntry(hash_map_pt map, int hash, void* key, void* value, int bucketIndex); struct hashMapEntry { void* key;
