Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jul 23, 2008, 7:31:40 PM (17 years ago)
Author:
rgrieder
Message:

It compiles now on tardis..

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/gui/src/core/Exception.h

    r1642 r1645  
    100100        }
    101101
    102         ~SpecificException() { }
     102        ~SpecificException() throw() { }
    103103
    104104        ExceptionType getType() const { return Type; }
     
    133133#ifndef NDEBUG
    134134#define OrxAssert(condition, errorMessage) \
    135     condition ? ((void)0) : (orxonox::OutputHandler::getOutStream().setOutputLevel(ORX_ERROR) << errorMessage << std::endl); \
    136     assert(condition);
     135    condition ? ((void)0) : (void)(orxonox::OutputHandler::getOutStream().setOutputLevel(ORX_ERROR) << errorMessage << std::endl); \
     136    assert(condition)
    137137#else
    138138#define OrxAssert(condition, errorMessage)  ((void)0)
Note: See TracChangeset for help on using the changeset viewer.