From 368b4b74050290a77f32cafa8c7fac3542bc6308 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Mon, 2 Apr 2012 12:17:59 -0400 Subject: [PATCH] Guard an LLTRACE variable to silence an unused variable warning. --- Python/ceval.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Python/ceval.c b/Python/ceval.c index ae0bd242a0..7908d444e1 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -822,7 +822,9 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag) PyObject *names; PyObject *consts; +#ifdef LLTRACE _Py_IDENTIFIER(__ltrace__); +#endif /* Computed GOTOs, or the-optimization-commonly-but-improperly-known-as-"threaded code" -- 2.40.0