diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-03-16 11:47:49 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-03-16 11:49:03 +0200 |
commit | 75488d5639819f31b01f76433b82d6259323230d (patch) | |
tree | 078a5071c3964f6bb4858925185862d8809b08e3 | |
parent | 02a854384146c21503fdd3c591e272ecf1c74433 (diff) | |
download | micropython-75488d5639819f31b01f76433b82d6259323230d.tar.gz micropython-75488d5639819f31b01f76433b82d6259323230d.zip |
unix-cpy: Switch to use MICROPY_FLOAT_IMPL config define.
-rw-r--r-- | unix-cpy/mpconfigport.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix-cpy/mpconfigport.h b/unix-cpy/mpconfigport.h index 3fc1866772..6351f0c4fe 100644 --- a/unix-cpy/mpconfigport.h +++ b/unix-cpy/mpconfigport.h @@ -2,7 +2,7 @@ #define MICROPY_EMIT_CPYTHON (1) #define MICROPY_ENABLE_LEXER_UNIX (1) -#define MICROPY_ENABLE_FLOAT (1) +#define MICROPY_FLOAT_IMPL (MICROPY_FLOAT_IMPL_DOUBLE) // type definitions for the specific machine |