Difference between revisions of "c/keyword/ Noreturn"
From cppreference.com
YexuanXiao (Talk | contribs) m (Undo revision 177571 by YexuanXiao (talk)) |
YexuanXiao (Talk | contribs) m (+space) |
||
Line 3: | Line 3: | ||
===Usage=== | ===Usage=== | ||
− | * [[c/language/_Noreturn | {{tt|_Noreturn}} function specifier]]{{mark deprecated c23}} | + | * [[c/language/_Noreturn | {{tt|_Noreturn}} function specifier]] {{mark deprecated c23}} |
− | * [[c/language/attributes/noreturn | {{tt|_Noreturn}} attribute-token]]{{mark since c23}}{{mark deprecated c23}} | + | * [[c/language/attributes/noreturn | {{tt|_Noreturn}} attribute-token]] {{mark since c23}} {{mark deprecated c23}} |
===Notes=== | ===Notes=== |
Revision as of 23:55, 10 November 2024
Usage
-
_Noreturn
function specifier (deprecated in C23) -
_Noreturn
attribute-token (since C23) (deprecated in C23)
Notes
Since C23, _Noreturn
is also attribute token. Its usage is deprecated and noreturn
should be used instead.