Ignore:
File:
1 edited

Legend:

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

    r147a137 r6b33e89  
    1010// Created On       : Mon Nov 28 12:27:26 2016
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Thu Feb  2 11:31:42 2023
    13 // Update Count     : 13
     12// Last Modified On : Fri Apr 25 06:52:04 2025
     13// Update Count     : 15
    1414//
    1515
     
    2626    nonlocal_exception * next;
    2727};
    28 static inline void ?{} ( nonlocal_exception & this, exception_t * ex ) with(this) {
     28
     29static inline void ?{}( nonlocal_exception & this, exception_t * ex ) with(this) {
    2930    the_exception = ex;
    30     next = 0p;
     31    this.next = 0p;
    3132}
    3233
     
    6667// void ^?{}( coStack_t & this );
    6768
    68 void  ?{}( coroutine$ & this, const char name[], void * storage, size_t storageSize );
     69void ?{}( coroutine$ & this, const char name[], void * storage, size_t storageSize );
    6970void ^?{}( coroutine$ & this );
    7071
Note: See TracChangeset for help on using the changeset viewer.