py/mpconfig.h: Remove parentheses from MICROPY_VERSION_xxx macros.

Otherwise MICROPY_VERSION_STRING includes these parentheses in the string.
pull/4467/head
Damien George 2019-01-26 00:44:35 +11:00
rodzic 6d480f50ac
commit aba83e66d7
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -27,9 +27,9 @@
#define MICROPY_INCLUDED_PY_MPCONFIG_H
// Current version of MicroPython
#define MICROPY_VERSION_MAJOR (1)
#define MICROPY_VERSION_MINOR (9)
#define MICROPY_VERSION_MICRO (4)
#define MICROPY_VERSION_MAJOR 1
#define MICROPY_VERSION_MINOR 9
#define MICROPY_VERSION_MICRO 4
// Combined version as a 32-bit number for convenience
#define MICROPY_VERSION ( \