Changeset 69010 in vbox
- Timestamp:
- Oct 9, 2017 10:11:03 AM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 118279
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/cdefs.h
r68572 r69010 1108 1108 # define RT_THROW(type) 1109 1109 #endif 1110 1111 1112 /** @def RT_FALL_THROUGH 1113 * Tell the compiler that we're falling through to the next case in a switch. 1114 * @sa RT_FALL_THRU */ 1115 #if RT_GNUC_PREREQ(7, 0) 1116 # define RT_FALL_THROUGH() __attribute__((fallthrough)) 1117 #else 1118 # define RT_FALL_THROUGH() (void)0 1119 #endif 1120 /** @def RT_FALL_THRU 1121 * Tell the compiler that we're falling thru to the next case in a switch. 1122 * @sa RT_FALL_THROUGH */ 1123 #define RT_FALL_THRU() RT_FALL_THROUGH() 1124 1110 1125 1111 1126 /** @def RT_IPRT_FORMAT_ATTR
Note:
See TracChangeset
for help on using the changeset viewer.