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
080fdbf9
Unverified
Commit
080fdbf9
authored
May 17, 2021
by
Yukihiro "Matz" Matsumoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename `mrb_flo_to_fixnum` to `mrb_float_to_integer`.
parent
fbbcee83
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
8 deletions
+9
-8
include/mruby/numeric.h
include/mruby/numeric.h
+4
-1
mrbgems/mruby-sprintf/src/sprintf.c
mrbgems/mruby-sprintf/src/sprintf.c
+2
-3
src/numeric.c
src/numeric.c
+1
-2
src/object.c
src/object.c
+2
-2
No files found.
include/mruby/numeric.h
View file @
080fdbf9
...
...
@@ -154,12 +154,15 @@ mrb_int_mul_overflow(mrb_int a, mrb_int b, mrb_int *c)
# define MRB_FLT_MAX_10_EXP DBL_MAX_10_EXP
# endif
/* MRB_USE_FLOAT32 */
MRB_API
mrb_value
mrb_flo
_to_fixnum
(
mrb_state
*
mrb
,
mrb_value
val
);
MRB_API
mrb_value
mrb_flo
at_to_integer
(
mrb_state
*
mrb
,
mrb_value
val
);
MRB_API
mrb_value
mrb_float_to_str
(
mrb_state
*
mrb
,
mrb_value
x
,
const
char
*
fmt
);
/* ArgumentError if format string doesn't match /%(\.[0-9]+)?[aAeEfFgG]/ */
MRB_API
int
mrb_float_to_cstr
(
mrb_state
*
mrb
,
char
*
buf
,
size_t
len
,
const
char
*
fmt
,
mrb_float
f
);
MRB_API
mrb_float
mrb_to_flo
(
mrb_state
*
mrb
,
mrb_value
x
);
/* obsolete function(s); will be removed */
#define mrb_flo_to_fixnum(mrb, val) mrb_float_to_integer(mrb, val)
#endif
/* MRB_NO_FLOAT */
MRB_END_DECL
...
...
mrbgems/mruby-sprintf/src/sprintf.c
View file @
080fdbf9
...
...
@@ -898,9 +898,8 @@ retry:
switch
(
mrb_type
(
val
))
{
#ifndef MRB_NO_FLOAT
case
MRB_TT_FLOAT
:
val
=
mrb_flo_to_fixnum
(
mrb
,
val
);
if
(
mrb_integer_p
(
val
))
goto
bin_retry
;
break
;
val
=
mrb_float_to_integer
(
mrb
,
val
);
goto
bin_retry
;
#endif
case
MRB_TT_STRING
:
val
=
mrb_str_to_inum
(
mrb
,
val
,
0
,
TRUE
);
...
...
src/numeric.c
View file @
080fdbf9
...
...
@@ -1357,13 +1357,12 @@ int_to_f(mrb_state *mrb, mrb_value num)
*/
/* ------------------------------------------------------------------------*/
MRB_API
mrb_value
mrb_flo
_to_fixnum
(
mrb_state
*
mrb
,
mrb_value
x
)
mrb_flo
at_to_integer
(
mrb_state
*
mrb
,
mrb_value
x
)
{
mrb_int
z
=
0
;
if
(
!
mrb_float_p
(
x
))
{
mrb_raise
(
mrb
,
E_TYPE_ERROR
,
"non float value"
);
z
=
0
;
/* not reached. just suppress warnings. */
}
else
{
mrb_float
d
=
mrb_float
(
x
);
...
...
src/object.c
View file @
080fdbf9
...
...
@@ -513,7 +513,7 @@ mrb_to_int(mrb_state *mrb, mrb_value val)
if
(
!
mrb_integer_p
(
val
))
{
#ifndef MRB_NO_FLOAT
if
(
mrb_float_p
(
val
))
{
return
mrb_flo
_to_fixnum
(
mrb
,
val
);
return
mrb_flo
at_to_integer
(
mrb
,
val
);
}
#endif
if
(
mrb_string_p
(
val
))
{
...
...
@@ -537,7 +537,7 @@ mrb_convert_to_integer(mrb_state *mrb, mrb_value val, mrb_int base)
#ifndef MRB_NO_FLOAT
case
MRB_TT_FLOAT
:
if
(
base
!=
0
)
goto
arg_error
;
return
mrb_flo
_to_fixnum
(
mrb
,
val
);
return
mrb_flo
at_to_integer
(
mrb
,
val
);
#endif
case
MRB_TT_INTEGER
:
...
...
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