Changes in / [9155026:e23169b]


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/concurrency/actor.hfa

    r9155026 re23169b  
    442442
    443443static inline void check_message( message & this ) {
    444     #ifdef __CFA_DEBUG__
    445     Allocation temp = this.allocation_;
    446     this.allocation_ = Finished;
    447     switch ( temp )
    448     #else
    449     switch ( this.allocation_ )
    450     #endif
    451     {                                           // analyze message status
     444    CFA_DEBUG( this.allocation_ = Finished; )
     445    switch ( this.allocation_ ) {                                               // analyze message status
    452446        case Nodelete: break;
    453447        case Delete: delete( &this ); break;
Note: See TracChangeset for help on using the changeset viewer.