This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
pp_goto: fix macro-in-macro compile error
authorDavid Mitchell <davem@iabyn.com>
Sun, 26 Feb 2023 15:35:09 +0000 (15:35 +0000)
committerDavid Mitchell <davem@iabyn.com>
Wed, 16 Aug 2023 16:17:00 +0000 (17:17 +0100)
commitdbc9c91513baa428008d05122f046052a2adc647
tree6993a2a74e38c018f012b1eb1e7db4c4084697da
parenta40b4738ef7afe79080c7f88d0b6a672f79fd3f8
pp_goto: fix macro-in-macro compile error

Turns out MSVC 1.42 doesn't like

        FOO(bar,
    #ifdef X
            1
    #else
            0
    #endif
        );

where FOO is a macro.
pp_ctl.c