Skip to content

Commit

Permalink
Remove unneeded export macros in hash_map_private.h
Browse files Browse the repository at this point in the history
  • Loading branch information
pnoltes committed Jan 4, 2024
1 parent cd8bfd5 commit 36d8c40
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions libs/utils/src/hash_map_private.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 36d8c40

Please sign in to comment.