Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
a3ef8087
Commit
a3ef8087
authored
Jun 06, 2014
by
Paul Sokolovsky
Browse files
modgc: 64-bit cleanness.
parent
755a55f5
Changes
1
Hide whitespace changes
Inline
Side-by-side
py/modgc.c
View file @
a3ef8087
...
...
@@ -42,7 +42,7 @@ extern uint gc_collected;
STATIC
mp_obj_t
py_gc_collect
(
void
)
{
gc_collect
();
#if MICROPY_PY_GC_COLLECT_RETVAL
return
MP_OBJ_NEW_SMALL_INT
(
gc_collected
);
return
MP_OBJ_NEW_SMALL_INT
(
(
uint
)
gc_collected
);
#else
return
mp_const_none
;
#endif
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment