fix deprecated macro for gcc < 4.5

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@899 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
Matthias Möller
2013-08-07 09:55:29 +00:00
parent afda61f067
commit fe2e047728

View File

@@ -80,7 +80,11 @@
#if defined(_MSCVER) #if defined(_MSCVER)
#define DEPRECATED(msg) __declspec(deprecated(msg)) #define DEPRECATED(msg) __declspec(deprecated(msg))
#elif defined(__GNUC__) || defined(__clang__) #elif defined(__GNUC__) || defined(__clang__)
#define DEPRECATED(msg) __attribute__ ((deprecated(msg))) #if GCC_VERSION >= 40500
#define DEPRECATED(msg) __attribute__ ((deprecated(msg)))
#else
#define DEPRECATED(msg) __attribute__ ((deprecated))
#endif
#else #else
#define DEPRECATED(msg) #define DEPRECATED(msg)
#endif #endif