Changeset 103960 in vbox for trunk/src/bldprogs
- Timestamp:
- Mar 20, 2024 2:02:02 PM (8 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bldprogs/VBoxCompilerPlugInsGcc.cpp
r100875 r103960 253 253 type_required : true, 254 254 function_type_required : true, 255 // gcc 7.3 at least moves this field to after "handler", and with 8.3 it is back256 #if RT_GNUC_PREREQ(4, 6) && !(RT_GNUC_PREREQ( 7, 0) && !RT_GNUC_PREREQ(8, 0))255 // gcc 6.3 at least moves this field to after "handler", and with 8.3 it is back 256 #if RT_GNUC_PREREQ(4, 6) && !(RT_GNUC_PREREQ(6, 3) && !RT_GNUC_PREREQ(8, 0)) 257 257 affects_type_identity : false, 258 258 #endif 259 259 handler : AttributeHandler, 260 #if RT_GNUC_PREREQ( 7, 0) && !RT_GNUC_PREREQ(8, 0)260 #if RT_GNUC_PREREQ(6, 3) && !RT_GNUC_PREREQ(8, 0) 261 261 affects_type_identity : false, 262 262 #endif … … 272 272 type_required : true, 273 273 function_type_required : true, 274 #if RT_GNUC_PREREQ(4, 6) && !(RT_GNUC_PREREQ( 7, 0) && !RT_GNUC_PREREQ(8, 0))274 #if RT_GNUC_PREREQ(4, 6) && !(RT_GNUC_PREREQ(6, 3) && !RT_GNUC_PREREQ(8, 0)) 275 275 affects_type_identity : false, 276 276 #endif 277 277 handler : AttributeHandler, 278 #if RT_GNUC_PREREQ( 7, 0) && !RT_GNUC_PREREQ(8, 0)278 #if RT_GNUC_PREREQ(6, 3) && !RT_GNUC_PREREQ(8, 0) 279 279 affects_type_identity : false, 280 280 #endif
Note:
See TracChangeset
for help on using the changeset viewer.