Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
77f4a8b6
Unverified
Commit
77f4a8b6
authored
3 years ago
by
Yukihiro "Matz" Matsumoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
object.c: move string to float conversion to `mrb_f_float`.
parent
66a099b1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
mrbgems/mruby-kernel-ext/src/kernel.c
mrbgems/mruby-kernel-ext/src/kernel.c
+3
-0
src/object.c
src/object.c
+0
-3
No files found.
mrbgems/mruby-kernel-ext/src/kernel.c
View file @
77f4a8b6
...
...
@@ -187,6 +187,9 @@ mrb_f_float(mrb_state *mrb, mrb_value self)
{
mrb_value
arg
=
mrb_get_arg1
(
mrb
);
if
(
mrb_string_p
(
arg
))
{
return
mrb_float_value
(
mrb
,
mrb_str_to_dbl
(
mrb
,
arg
,
TRUE
));
}
return
mrb_to_float
(
mrb
,
arg
);
}
#endif
...
...
This diff is collapsed.
Click to expand it.
src/object.c
View file @
77f4a8b6
...
...
@@ -512,9 +512,6 @@ mrb_ensure_float_type(mrb_state *mrb, mrb_value val)
case
MRB_TT_FLOAT
:
return
val
;
case
MRB_TT_STRING
:
return
mrb_float_value
(
mrb
,
mrb_str_to_dbl
(
mrb
,
val
,
TRUE
));
default:
mrb_raisef
(
mrb
,
E_TYPE_ERROR
,
"%Y cannot be converted to Float"
,
val
);
/* not reached */
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
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