Use the [[deprecated]] standard attribute when possible.

* spot/misc/common.hh: Change SPOT_DEPRECATED definition.
This commit is contained in:
Maximilien Colange 2016-11-24 15:06:46 +01:00
parent 22292e6058
commit 5952392494

View file

@ -30,12 +30,19 @@
#define SPOT_UNLIKELY(expr) (expr)
#endif
#ifdef __GNUC__
#define SPOT_DEPRECATED __attribute__ ((deprecated))
#elif defined(_MSC_VER)
#define SPOT_DEPRECATED __declspec(deprecated)
#else
#define SPOT_DEPRECATED func
#ifdef __has_cpp_attribute
# if __has_cpp_attribute(deprecated)
# define SPOT_DEPRECATED [[deprecated]]
# endif
#endif
#ifndef SPOT_DEPRECATED
# ifdef __GNUC__
# define SPOT_DEPRECATED __attribute__ ((deprecated))
# elif defined(_MSC_VER)
# define SPOT_DEPRECATED __declspec(deprecated)
# else
# define SPOT_DEPRECATED
# endif
#endif
#if defined _WIN32 || defined __CYGWIN__