File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 462462
463463/* ---- deprecation -----------------------------------------------------------*/
464464#if defined(__GNUC__) || defined(__clang__) || defined(__INTEL_COMPILER)
465- # if (__GNUC__ == 5 && (__GNUC_MINOR__ == 1 || __GNUC_MINOR__ == 2)) || defined(R__NO_DEPRECATION)
466- /* GCC 5.1, 5.2: false positives due to https://gcc.gnu.org/bugzilla/show_bug.cgi?id=15269
467- or deprecation turned off */
465+ # if (__GNUC__ == 5 && (__GNUC_MINOR__ == 1 || __GNUC_MINOR__ == 2 || __GNUC_MINOR__ == 3)) || defined(R__NO_DEPRECATION)
466+ /* GCC 5.1, 5.2: false positives due to https://gcc.gnu.org/bugzilla/show_bug.cgi?id=15269,
467+ GCC 5.3: broken compilation when deprecating enumerators: https://godbolt.org/z/1TEo5M,
468+ deprecation turned off */
468469# define _R__DEPRECATED_LATER (REASON )
469470# else
470471# define _R__DEPRECATED_LATER (REASON ) __attribute__((deprecated(REASON )))
You can’t perform that action at this time.
0 commit comments