We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6c5d39 commit 2813cb6Copy full SHA for 2813cb6
2 files changed
py/obj.h
@@ -398,7 +398,7 @@ mp_obj_t mp_obj_len_maybe(mp_obj_t o_in); /* may return MP_OBJ_NULL */
398
399
// bool
400
// TODO make lower case when it has proven itself
401
-inline mp_obj_t MP_BOOL(machine_int_t x) { return x ? mp_const_true : mp_const_false; }
+static inline mp_obj_t MP_BOOL(machine_int_t x) { return x ? mp_const_true : mp_const_false; }
402
403
// cell
404
mp_obj_t mp_obj_cell_get(mp_obj_t self_in);
py/qstr.h
@@ -12,7 +12,7 @@ enum {
12
#include "build/py/qstrdefs.generated.h"
13
#undef Q
14
MP_QSTR_number_of,
15
-} category_t;
+};
16
17
typedef machine_uint_t qstr;
18
0 commit comments