diff options
author | Damien George <damien.p.george@gmail.com> | 2014-11-05 21:16:41 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-11-05 21:16:41 +0000 |
commit | 7860c2a68acd1ccd28cb4bb87819487fd6966a9e (patch) | |
tree | c18a1aa3d44b4f3f4510e1ff19eac166f15007dd /py/mpconfig.h | |
parent | be8e99c7d4ac4d46069a358436a7036a3066d0a9 (diff) | |
download | micropython-7860c2a68acd1ccd28cb4bb87819487fd6966a9e.tar.gz micropython-7860c2a68acd1ccd28cb4bb87819487fd6966a9e.zip |
py: Fix some macros defines; cleanup some includes.
Diffstat (limited to 'py/mpconfig.h')
-rw-r--r-- | py/mpconfig.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/py/mpconfig.h b/py/mpconfig.h index 8ef3e62fec..02c6674d8b 100644 --- a/py/mpconfig.h +++ b/py/mpconfig.h @@ -184,8 +184,8 @@ #endif // Whether to enable finalisers in the garbage collector (ie call __del__) -#ifndef MICROPY_ENABLE_GC_FINALISER -#define MICROPY_ENABLE_GC_FINALISER (0) +#ifndef MICROPY_ENABLE_FINALISER +#define MICROPY_ENABLE_FINALISER (0) #endif // Whether to check C stack usage. C stack used for calling Python functions, |