Changeset 22515 in vbox
- Timestamp:
- Aug 27, 2009 12:40:46 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/include/VBoxUtils-darwin.h
r21036 r22515 204 204 205 205 /* Asserts if a != noErr and prints the error code */ 206 # define AssertCarbonOSStatus(a) AssertMsg ((a) == noErr, ("Carbon OSStatus: %d\n", static_cast<int> (a))) 206 # define AssertCarbonOSStatus(a) \ 207 # ifdef RT_STRICT \ 208 AssertMsg ((a) == noErr, ("Carbon OSStatus: %d\n", static_cast<int> (a))) \ 209 # else \ 210 do { NOREF(a) } while (0) \ 211 # endif 207 212 208 213
Note:
See TracChangeset
for help on using the changeset viewer.