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) #define SPOT_UNLIKELY(expr) (expr)
#endif #endif
#ifdef __has_cpp_attribute
# if __has_cpp_attribute(deprecated)
# define SPOT_DEPRECATED [[deprecated]]
# endif
#endif
#ifndef SPOT_DEPRECATED
# ifdef __GNUC__ # ifdef __GNUC__
# define SPOT_DEPRECATED __attribute__ ((deprecated)) # define SPOT_DEPRECATED __attribute__ ((deprecated))
# elif defined(_MSC_VER) # elif defined(_MSC_VER)
# define SPOT_DEPRECATED __declspec(deprecated) # define SPOT_DEPRECATED __declspec(deprecated)
# else # else
#define SPOT_DEPRECATED func # define SPOT_DEPRECATED
# endif
#endif #endif
#if defined _WIN32 || defined __CYGWIN__ #if defined _WIN32 || defined __CYGWIN__