diff options
Diffstat (limited to 'extmod/moduheapq.c')
-rw-r--r-- | extmod/moduheapq.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extmod/moduheapq.c b/extmod/moduheapq.c index 59277813e9..79a12c2b9c 100644 --- a/extmod/moduheapq.c +++ b/extmod/moduheapq.c @@ -27,7 +27,7 @@ #include "py/objlist.h" #include "py/runtime.h" -#if MICROPY_PY_UHEAPQ +#if MICROPY_PY_HEAPQ // the algorithm here is modelled on CPython's heapq.py @@ -121,4 +121,4 @@ const mp_obj_module_t mp_module_heapq = { MP_REGISTER_MODULE(MP_QSTR_heapq, mp_module_heapq); #endif -#endif // MICROPY_PY_UHEAPQ +#endif // MICROPY_PY_HEAPQ |