Message316061
In Arrow we use the following:
#if __cplusplus <= 201103L
# ifdef __GNUC__
# define ARROW_DEPRECATED(...) __attribute__((deprecated(__VA_ARGS__)))
# elif defined(_MSC_VER)
# define ARROW_DEPRECATED(...) __declspec(deprecated(__VA_ARGS__))
# else
# define ARROW_DEPRECATED(...)
# endif
#else
# define ARROW_DEPRECATED(...) [[deprecated(__VA_ARGS__)]]
#endif |
|
| Date |
User |
Action |
Args |
| 2018-05-02 09:35:26 | pitrou | set | recipients:
+ pitrou, paul.moore, vstinner, tim.golden, zach.ware, steve.dower |
| 2018-05-02 09:35:26 | pitrou | set | messageid: <[email protected]> |
| 2018-05-02 09:35:26 | pitrou | link | issue33407 messages |
| 2018-05-02 09:35:26 | pitrou | create | |
|