Branch: refs/heads/blead
  Home:   https://github.com/Perl/perl5
  Commit: df4834b71303541bb1f605c8f252a15ab198b714
      
https://github.com/Perl/perl5/commit/df4834b71303541bb1f605c8f252a15ab198b714
  Author: Peter Eisentraut <pe...@eisentraut.org>
  Date:   2025-04-07 (Mon, 07 Apr 2025)

  Changed paths:
    M perl.h

  Log Message:
  -----------
  Fix potential conflict of __attribute__((noreturn))

If <stdnoreturn.h> is included first, then noreturn is defined to
_Noreturn, and then __attribute__((noreturn)) will end up being
__attribute__((_Noreturn)), which would not be recognized and might
result in a compiler warning.  To avoid this, use the alternative
spelling __attribute__((__noreturn__)) instead.  This is supported by
the same compiler versions.



To unsubscribe from these emails, change your notification settings at 
https://github.com/Perl/perl5/settings/notifications

Reply via email to