10000 ifdef --> ifndef · python/cpython@9c06493 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9c06493

Browse files
committed
ifdef --> ifndef
1 parent 566d9c0 commit 9c06493

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/compile.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8482,7 +8482,7 @@ propagate_line_numbers(basicblock *entryblock);
84828482
static void
84838483
eliminate_empty_basic_blocks(cfg_builder *g);
84848484

8485-
#ifdef NDEBUG
8485+
#ifndef NDEBUG
84868486
static bool
84878487
no_redundant_jumps(cfg_builder *g) {
84888488
for (basicblock *b = g->g_entryblock; b != NULL; b = b->b_next) {

0 commit comments

Comments
 (0)
0