mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
gh-121040: Use __attribute__((fallthrough)) (#121044)
Fix warnings when using -Wimplicit-fallthrough compiler flag. Annotate explicitly "fall through" switch cases with a new _Py_FALLTHROUGH macro which uses __attribute__((fallthrough)) if available. Replace "fall through" comments with _Py_FALLTHROUGH. Add _Py__has_attribute() macro. No longer define __has_attribute() macro if it's not defined. Move also _Py__has_builtin() at the top of pyport.h. Co-Authored-By: Nikita Sobolev <mail@sobolevn.me>
This commit is contained in:
parent
4999e0bda0
commit
12af8ec864
29 changed files with 131 additions and 104 deletions
|
@ -1234,7 +1234,7 @@ char * PyOS_double_to_string(double val,
|
|||
case 'E':
|
||||
float_strings = uc_float_strings;
|
||||
format_code = 'e';
|
||||
/* Fall through. */
|
||||
_Py_FALLTHROUGH;
|
||||
case 'e':
|
||||
mode = 2;
|
||||
precision++;
|
||||
|
@ -1244,7 +1244,7 @@ char * PyOS_double_to_string(double val,
|
|||
case 'F':
|
||||
float_strings = uc_float_strings;
|
||||
format_code = 'f';
|
||||
/* Fall through. */
|
||||
_Py_FALLTHROUGH;
|
||||
case 'f':
|
||||
mode = 3;
|
||||
break;
|
||||
|
@ -1253,7 +1253,7 @@ char * PyOS_double_to_string(double val,
|
|||
case 'G':
|
||||
float_strings = uc_float_strings;
|
||||
format_code = 'g';
|
||||
/* Fall through. */
|
||||
_Py_FALLTHROUGH;
|
||||
case 'g':
|
||||
mode = 2;
|
||||
/* precision 0 makes no sense for 'g' format; interpret as 1 */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue