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
5cdff5fa
Commit
5cdff5fa
authored
May 17, 2014
by
Paul Sokolovsky
Browse files
Merge pull request #615 from swegener/for-upstream
py: Fix mp_obj_t -> mp_const_obj_t for mp_obj_int_get_checked()
parents
bf271401
7ba0fedf
Changes
1
Hide whitespace changes
Inline
Side-by-side
py/objint.c
View file @
5cdff5fa
...
...
@@ -258,7 +258,7 @@ machine_int_t mp_obj_int_get(mp_obj_t self_in) {
return
MP_OBJ_SMALL_INT_VALUE
(
self_in
);
}
machine_int_t
mp_obj_int_get_checked
(
mp_obj_t
self_in
)
{
machine_int_t
mp_obj_int_get_checked
(
mp_
const_
obj_t
self_in
)
{
return
MP_OBJ_SMALL_INT_VALUE
(
self_in
);
}
...
...
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