1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-18 11:19:10 +00:00

ASSume that MSVC is the only compiler who uses the __declspec() syntax

This commit is contained in:
2014-05-24 19:25:43 -07:00
parent 688852e658
commit e331cbd4f7
4 changed files with 1 additions and 8 deletions

View File

@ -145,7 +145,7 @@ typedef uint32_t hsGSeedValue;
# define hsDeprecated(message) [[deprecated(message)]]
#elif defined(HAVE_GCC_DEPRECATED_ATTR)
# define hsDeprecated(message) __attribute__((deprecated(message)))
#elif defined(HAVE_MSVC_DEPRECATED_ATTR)
#elif defined(_MSC_VER)
# define hsDeprecated(message) __declspec(deprecated(message))
#else
# define hsDeprecated(message)