Ignore:
Timestamp:
Feb 26, 2024, 3:53:42 AM (20 months ago)
Author:
JiadaL <j82liang@…>
Branches:
master
Children:
3f9a8d0
Parents:
0522ebe (diff), 022bce0 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Resolve conflict

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/Exception.hfa

    r0522ebe ra4da45e  
    22
    33// TEMPORARY
    4 #define ExceptionDecl( name, fields... ) exception name{ fields }; __attribute__(( cfa_linkonce )) vtable( name ) name ## _vt
    5 #define ExceptionInst( name, values... ) (name){ &name ## _vt, values }
     4#define ExceptionDecl( name, fields... ) exception name{ fields }; \
     5        __attribute__(( cfa_linkonce )) vtable( name ) name ## _vt
     6#define ExceptionArgs( name, args... ) &name ## _vt, args
     7#define ExceptionInst( name, args... ) (name){ ExceptionArgs( name, args ) }
Note: See TracChangeset for help on using the changeset viewer.