Changeset 10b5970 for tests/coroutine


Ignore:
Timestamp:
Jan 7, 2025, 3:22:19 PM (9 months ago)
Author:
Michael Brooks <mlbrooks@…>
Branches:
master
Children:
190a833
Parents:
70670e7
Message:

Fix many test-suite- and libcfa-caused unused variable warnings.

In scope are easy fixes among tests whose sole warnings were unused variable. Reduces the wflags lax list by 40%.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/coroutine/raii.cfa

    r70670e7 r10b5970  
    3232coroutine Cor {};
    3333
    34 void ?{}( Cor & this ) {
     34void ?{}( Cor & ) {
    3535        sout | "Coroutine Ctor";
    3636}
    3737
    38 void main( Cor & this ) {
     38void main( Cor & ) {
    3939        Raii raii = { "Coroutine" };
    4040        sout | "Before Suspend";
     
    4343}
    4444
    45 void ^?{}( Cor & this ) {
     45void ^?{}( Cor & ) {
    4646        sout | "Coroutine Dtor";
    4747}
Note: See TracChangeset for help on using the changeset viewer.