Codebase list libcryptx-perl / 2d50e35
fix __declspec(deprecated) Karel Miko 6 years ago
1 changed file(s) with 2 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
278278
279279 #if defined(__GNUC__) && (__GNUC__ * 100 + __GNUC_MINOR__ >= 301)
280280 #define LTC_DEPRECATED __attribute__((deprecated))
281 #elif defined(_MSC_VER)
281 #elif defined(_MSC_VER) && _MSC_VER >= 1500
282 /* supported since Visual Studio 2008 */
282283 #define LTC_DEPRECATED __declspec(deprecated)
283284 #else
284285 #define LTC_DEPRECATED