Changeset 63430 in vbox
- Timestamp:
- Aug 14, 2016 12:32:05 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 110076
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/assert.h
r63050 r63430 302 302 */ 303 303 #ifdef __GNUC__ 304 # define AssertCompileNS(expr) extern int RTASSERTVAR[1] __attribute__(( unused)), RTASSERTVAR[(expr) ? 1 : 0] __attribute__((unused))304 # define AssertCompileNS(expr) extern int RTASSERTVAR[1] __attribute__((__unused__)), RTASSERTVAR[(expr) ? 1 : 0] __attribute__((__unused__)) 305 305 #elif defined(__IBMC__) || defined(__IBMCPP__) 306 306 # define AssertCompileNS(expr) extern int RTASSERTVAR[(expr) ? 1 : 0]
Note:
See TracChangeset
for help on using the changeset viewer.