git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@1894 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
meep-eep
2005-10-13 00:01:33 +00:00
parent 919d4ffb4c
commit 112e4e98e4
+2 -2
View File
@@ -48,9 +48,9 @@
# define HashTable_EQUAL(hashTable, hashKey1, hashKey2) \ # define HashTable_EQUAL(hashTable, hashKey1, hashKey2) \
(hashTable)->equalFunction(hashKey1, hashKey2) (hashTable)->equalFunction(hashKey1, hashKey2)
# define HashTable_COPY(hashTable, hashKey) \ # define HashTable_COPY(hashTable, hashKey) \
(hashTable)->copyFunction(hashKey) (hashTable)->copyFunction(hashTable, hashKey)
# define HashTable_FREE(hashTable, hashKey) \ # define HashTable_FREE(hashTable, hashKey) \
(hashTable)->copyFunction(hashKey) (hashTable)->freeFunction(hashTable, hashKey)
#endif #endif