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