You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
0 commit comments