Changeset 6a6e205 for libcfa/src


Ignore:
Timestamp:
Jan 13, 2025, 1:32:32 PM (8 weeks ago)
Author:
Michael Brooks <mlbrooks@…>
Branches:
master
Children:
c086c6e
Parents:
267b543
Message:

Clean some warnings from unused variables and pointer-to-int casts.

File:
1 edited

Legend:

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

    r267b543 r6a6e205  
    113113                return buffer[old_idx];
    114114        }
    115         request * ret = 0p;
    116115        return *0p;
    117116}
     
    147146        id = i;
    148147        missed = 0;
     148        #else
     149        (void) i;
    149150        #endif
    150151}
     
    715716struct finished_msg_t { inline message; } finished_msg = __base_msg_finished;
    716717
    717 allocation receive( actor & this, delete_msg_t & ) { return Delete; }
    718 allocation receive( actor & this, destroy_msg_t & ) { return Destroy; }
    719 allocation receive( actor & this, finished_msg_t & ) { return Finished; }
     718allocation receive( actor &, delete_msg_t & ) { return Delete; }
     719allocation receive( actor &, destroy_msg_t & ) { return Destroy; }
     720allocation receive( actor &, finished_msg_t & ) { return Finished; }
    720721
    721722// Default messages used all the time.
Note: See TracChangeset for help on using the changeset viewer.