use GU_API_DATA_DECL instead of GU_API_DATA to make the C runtime compile again on MacOS

This commit is contained in:
krasimir
2017-04-13 11:06:24 +00:00
parent dcf7a34212
commit 5280202ac3
3 changed files with 6 additions and 6 deletions

View File

@@ -31,10 +31,10 @@ struct GuHasher {
};
GU_API_DATA GuHasher gu_int_hasher[1];
GU_API_DATA_DECL GuHasher gu_int_hasher[1];
GU_API_DATA GuHasher gu_addr_hasher[1];
GU_API_DATA_DECL GuHasher gu_addr_hasher[1];
GU_API_DATA GuHasher gu_word_hasher[1];
GU_API_DATA_DECL GuHasher gu_word_hasher[1];
#endif // GU_HASH_H_