MSVC6 is the latest version not supporting deprecated declpec

This commit is contained in:
carlo-bramini 2017-10-24 20:31:56 +02:00
parent 96f0f5fe88
commit 36f0ecb12a

View file

@ -48,7 +48,7 @@ extern "C" {
#if defined(__GNUC__) || defined(__clang__)
# define FLUID_DEPRECATED __attribute__((deprecated))
#elif defined(_MSC_VER) && _MSC_VER > 1400
#elif defined(_MSC_VER) && _MSC_VER > 1200
# define FLUID_DEPRECATED __declspec(deprecated)
#else
# define FLUID_DEPRECATED