Changes in / [9155026:e23169b]
- File:
-
- 1 edited
-
libcfa/src/concurrency/actor.hfa (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/actor.hfa
r9155026 re23169b 442 442 443 443 static 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 452 446 case Nodelete: break; 453 447 case Delete: delete( &this ); break;
Note:
See TracChangeset
for help on using the changeset viewer.