Message316061
| Author |
pitrou |
| Recipients |
paul.moore, pitrou, steve.dower, tim.golden, vstinner, zach.ware |
| Date |
2018-05-02.09:35:26 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1525253726.71.0.682650639539.issue33407@psf.upfronthosting.co.za> |
| In-reply-to |
|
| Content |
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 |
|