ImportC has improved macro support

Walter Bright newshound2 at digitalmars.com
Wed Dec 6 19:59:54 UTC 2023


Macros with the pattern:

     #define BOO ( expression )

are now translated to:

     auto BOO()() { return expression; }

and are available for importing!


More information about the Digitalmars-d-announce mailing list