Browse Source

Issue #13002: Fix Visual Studio warning (not enough actual parameters).

pull/2332/head
Stefan Krah 14 years ago
parent
commit
472d280d8b
  1. 2
      Python/peephole.c

2
Python/peephole.c

@ -66,7 +66,7 @@
const_stack_top = -1; \
} while(0)
#define CONST_STACK_TOP(x) \
#define CONST_STACK_TOP() \
const_stack[const_stack_top]
#define CONST_STACK_LASTN(i) \

Loading…
Cancel
Save