Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2f75b29

Browse files
committed
Indent the #error directives so a classic K&R cpp doesn't see them.
1 parent a9040ec commit 2f75b29

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Python/compile.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,13 @@ PERFORMANCE OF THIS SOFTWARE.
6363
(which defines too many confusing symbols), but we can check here
6464
that they haven't changed (which is very unlikely, but possible). */
6565
#if Py_single_input != single_input
66-
#error "single_input has changed -- update Py_single_input in Python.h"
66+
#error "single_input has changed -- update Py_single_input in Python.h"
6767
#endif
6868
#if Py_file_input != file_input
69-
#error "file_input has changed -- update Py_file_input in Python.h"
69+
#error "file_input has changed -- update Py_file_input in Python.h"
7070
#endif
7171
#if Py_eval_input != eval_input
72-
#error "eval_input has changed -- update Py_eval_input in Python.h"
72+
#error "eval_input has changed -- update Py_eval_input in Python.h"
7373
#endif
7474

7575
int Py_OptimizeFlag = 0;

0 commit comments

Comments
 (0)