Fix: forgot to commit these files as part of strand bugfix.

This commit is contained in:
2012-05-04 12:46:51 +00:00
parent a0ce240de9
commit 68d9e73ecd
3 changed files with 7 additions and 7 deletions

View File

@@ -149,10 +149,10 @@ int BLI_ghashutil_intcmp (const void *a, const void *b);
typedef struct GHashPair {
const void *first;
int second;
const void *second;
} GHashPair;
GHashPair* BLI_ghashutil_pairalloc (const void *first, int second);
GHashPair* BLI_ghashutil_pairalloc (const void *first, const void *second);
unsigned int BLI_ghashutil_pairhash (const void *ptr);
int BLI_ghashutil_paircmp (const void *a, const void *b);
void BLI_ghashutil_pairfree (void *ptr);