Changeset 3153 for code/branches/pch/src/util/OrxAssert.h
- Timestamp:
- Jun 13, 2009, 4:12:45 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/pch/src/util/OrxAssert.h
r3149 r3153 44 44 #ifndef NDEBUG 45 45 #define OrxAssert(Assertion, ErrorMessage) \ 46 Assertion ? ((void)0) : (void)(orxonox::OutputHandler::getOutStream().setOutputLevel( ORX_ERROR) << ErrorMessage << std::endl); \46 Assertion ? ((void)0) : (void)(orxonox::OutputHandler::getOutStream().setOutputLevel(1) << ErrorMessage << std::endl); \ 47 47 assert(Assertion) 48 48 #else
Note: See TracChangeset
for help on using the changeset viewer.