Changeset 84511 in vbox
- Timestamp:
- May 25, 2020 3:19:43 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/cdefs.h
r84510 r84511 2564 2564 || (defined(__cplusplus) && ( RT_GNUC_PREREQ(6, 1) \ 2565 2565 && ( !RT_GNUC_PREREQ(7, 0) /* gcc-7 warns again */ \ 2566 || RT_GNUC_PREREQ( 9, 0) /* gcc-9works with __extension__, the ones in between needs testing */ ))) \2566 || RT_GNUC_PREREQ(8, 0) /* gcc-8 works with __extension__, the ones in between needs testing */ ))) \ 2567 2567 || defined(__WATCOMC__) /* openwatcom 1.9 supports it, we don't care about older atm. */ \ 2568 2568 || RT_CLANG_PREREQ_EX(3, 4, 0) /* Only tested clang v3.4, support is probably older. */ … … 2585 2585 * pedantic warnings are enabled. Put this on the line before the flexible 2586 2586 * array. */ 2587 #if (RT_GNUC_PREREQ( 9, 0) && defined(__cplusplus)) || defined(DOXGYEN_RUNNING)2587 #if (RT_GNUC_PREREQ(8, 0) && defined(__cplusplus)) || defined(DOXGYEN_RUNNING) 2588 2588 # define RT_FLEXIBLE_ARRAY_EXTENSION RT_GCC_EXTENSION 2589 2589 #else
Note:
See TracChangeset
for help on using the changeset viewer.