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
8ee51643
Unverified
Commit
8ee51643
authored
Apr 17, 2019
by
Yukihiro "Matz" Matsumoto
Committed by
GitHub
Apr 17, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4386 from tomas/stable
Fix compilation on gcc 4.9.x
parents
7c91efc1
ef3b5391
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
4 deletions
+7
-4
mrbgems/mruby-test/driver.c
mrbgems/mruby-test/driver.c
+2
-2
src/numeric.c
src/numeric.c
+3
-1
src/variable.c
src/variable.c
+2
-1
No files found.
mrbgems/mruby-test/driver.c
View file @
8ee51643
...
...
@@ -50,10 +50,10 @@ static mrb_value
t_print
(
mrb_state
*
mrb
,
mrb_value
self
)
{
mrb_value
*
argv
;
mrb_int
argc
;
mrb_int
argc
,
i
;
mrb_get_args
(
mrb
,
"*!"
,
&
argv
,
&
argc
);
for
(
mrb_int
i
=
0
;
i
<
argc
;
++
i
)
{
for
(
i
=
0
;
i
<
argc
;
++
i
)
{
mrb_value
s
=
mrb_obj_as_string
(
mrb
,
argv
[
i
]);
fwrite
(
RSTRING_PTR
(
s
),
RSTRING_LEN
(
s
),
1
,
stdout
);
}
...
...
src/numeric.c
View file @
8ee51643
...
...
@@ -207,12 +207,14 @@ flo_to_s(mrb_state *mrb, mrb_value flt)
char
fmt
[]
=
"%."
MRB_STRINGIZE
(
FLO_TO_STR_PREC
)
"g"
;
mrb_value
str
=
mrb_float_to_str
(
mrb
,
flt
,
fmt
);
mrb_int
len
;
char
*
p
;
char
*
begp
;
char
*
endp
;
insert_dot_zero:
begp
=
RSTRING_PTR
(
str
);
len
=
RSTRING_LEN
(
str
);
for
(
char
*
p
=
begp
,
*
endp
=
p
+
len
;
p
<
endp
;
++
p
)
{
for
(
p
=
begp
,
endp
=
p
+
len
;
p
<
endp
;
++
p
)
{
if
(
*
p
==
'.'
)
{
return
str
;
}
...
...
src/variable.c
View file @
8ee51643
...
...
@@ -1115,7 +1115,8 @@ mrb_class_find_path(mrb_state *mrb, struct RClass *c)
mrb_bool
mrb_ident_p
(
const
char
*
s
,
mrb_int
len
)
{
for
(
mrb_int
i
=
0
;
i
<
len
;
i
++
)
{
mrb_int
i
;
for
(
i
=
0
;
i
<
len
;
i
++
)
{
if
(
!
identchar
(
s
[
i
]))
return
FALSE
;
}
return
TRUE
;
...
...
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