Ignore:
File:
1 edited

Legend:

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

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